일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | |
7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 | 29 | 30 |
- blockchain
- 기준
- 삶
- bitcoin
- Ethereum
- Props
- JavaScript
- built in object
- concept
- error
- nextJS
- graphQL
- middleware
- node.js
- typeScript
- Redux
- hardhat
- useState
- REACT
- SSR
- express.js
- CLASS
- Interface
- tailwindcss
- solidity
- web
- HTML
- evm
- API
- CSS
- Today
- Total
목록전체 글 (375)
ReasonJun

Error When installing next.js as follows, an error like the following picture occurred. Cause & Solution: https://www.totaltypescript.com/react-refers-to-a-umd-global Explained: 'React' refers to a UMD global Find out why this error occurs and learn how to fix it. www.totaltypescript.com Personal thought & solution However, personally, I just followed the method provided by next.js, but I didn't..

getServerSideProps is a function that is used to fetch data from the server in Next.js. It is called on every request and the data that it returns is used to render the page. This is useful for pages that need to fetch data that changes often, such as user data or product information. getServerSideProps is a function that takes two arguments: req is the HTTP request object. res is the HTTP respo..

getStaticPaths getStaticPaths is a Next.js function that allows you to pre-generate a list of paths for your pages. This can be useful for pages that have dynamic routes, such as blog posts or product pages. The getStaticPaths function is called once during the build process, and the results are cached. This means that the next time a user visits a page, the pre-generated list of paths will be u..

Normally, when importing data in React, import it from useEffect. However, in Nextjs, it is imported using a different method. (Of course, you can also import it using useEffect.) getStaticProps getStaticProps is a Next.js function that allows you to pre-render your pages on the server. This can improve performance and SEO, as the browser does not need to render the pages on its own. The getStat..

The React Framework for Production. Next.js by Vercel - The React Framework Next.js by Vercel - The React Framework Next.js Boilerplate A Next.js app and a Serverless Function API. Image Gallery Starter An image gallery built on Next.js and Cloudinary. Next.js Commerce An all-in-one starter kit for high-performance e-commerce sites. nextjs.org Next.js is a popular open-source framework for build..
CSR stands for Client-Side Rendering, while SSR stands for Server-Side Rendering. These are two different approaches to rendering web content and have their own benefits and trade-offs. Client-Side Rendering (CSR): Client-Side Rendering is a technique where the web browser, or the client, is responsible for rendering the UI. In CSR, the server primarily sends a minimal HTML document along with J..
React 18 introduces a new feature called Transitions, which allows you to optimize your user experience, especially for tasks or features that require some time to load. With Transitions, you can differentiate between in-state updates and updates that can be delayed, and show in the UI any necessary loading more efficiently for those that require more time. To use Transitions, you can use the us..
In React 18, the concept of suspense has been introduced as a built-in feature. Suspense allows you to manage and handle asynchronous operations, such as data fetching or code splitting, in a more declarative manner. It enables you to suspend the rendering of a component while it's waiting for some asynchronous work to complete, and then display fallback content until the work is finished. Here ..
Automatic batching is a feature introduced in React 18 that simplifies the process of batching multiple state updates together, reducing unnecessary re-renders and improving performance in React applications. In earlier versions of React, when multiple setState calls were made consecutively within the same event handler or lifecycle method, each state update triggered a separate re-render of the..
REST, which stands for Representational State Transfer, is an architectural style for designing networked applications. It provides a set of principles and constraints for creating web services that can be easily consumed by clients over the internet. A REST API (Application Programming Interface) is an implementation of the REST principles that allows communication between clients and servers u..