일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
31 |
- express.js
- REACT
- 기준
- useState
- HTML
- web
- middleware
- CSS
- bitcoin
- Props
- CLASS
- graphQL
- tailwindcss
- nextJS
- hardhat
- blockchain
- SSR
- API
- concept
- solidity
- evm
- typeScript
- Redux
- node.js
- JavaScript
- 삶
- Ethereum
- error
- built in object
- Interface
- Today
- Total
목록Frontend (231)
ReasonJun

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 ..