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

Next.js has a default caching mechanism aimed at enhancing performance and cost-efficiency. By default, it employs static rendering for routes and caches data requests unless you specifically choose not to use caching. Here's a summary of the default caching behavior: Static Route Rendering: Routes are statically rendered at build time. This means that during the build process, Next.js generates..
Server Actions: React’s first steps into mutability Within the context of RSCs, Server Actions are functions that you define in an RSC on the server side that you can then pass across the server/client boundary. When a user interacts with your app on the client side, they can directly call Server Actions which will be executed securely on the server side. This approach provides a seamless Remote..
Conclusion In summary, React 18's latest features improve performance in many ways. With Concurrent React, the rendering process can be paused and resumed later or even abandoned. This means the UI can respond immediately to user input even if a large rendering task is in progress. The Transitions API allows for smoother transitions during data fetches or screen changes without blocking user inp..
SCSS (Sass CSS) stands for "Sassy CSS" and is a popular extension of CSS (Cascading Style Sheets). It introduces a set of enhancements and features that make writing and maintaining CSS code more efficient and organized. SCSS is often used in combination with build tools like Webpack and preprocessors to streamline web development workflows. Here are the key features and concepts of SCSS: Nestin..
A "source map" is a file generated by tools like Webpack that provides a mapping between the code in your original source files and the code in the final bundled and minified files. It's an essential tool in modern web development for debugging and understanding issues that occur in production code. When you bundle and minify your code using tools like Webpack, the resulting output can be challe..
Gzip compression is a widely used method for reducing the size of files, particularly text-based files like HTML, CSS, JavaScript, and JSON, that are transmitted over the internet. It's a form of data compression that significantly reduces the amount of data that needs to be transferred between a web server and a client (usually a web browser). This results in faster load times and improved webs..