일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- CSS
- Redux
- nextJS
- useState
- Interface
- bitcoin
- HTML
- typeScript
- Props
- web
- API
- built in object
- SSR
- blockchain
- evm
- middleware
- concept
- Ethereum
- graphQL
- JavaScript
- hardhat
- error
- node.js
- 삶
- 기준
- solidity
- express.js
- CLASS
- REACT
- tailwindcss
- Today
- Total
목록Frontend/Bundler (3)
ReasonJun
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..
Webpack is a static module bundler for JavaScript applications. It is made primarily for JavaScript, but it can transform front-end assets such as HTML, CSS, and images if the corresponding loaders are included. Webpack takes modules with dependencies and generates static assets representing those modules. Here are some of the benefits of using Webpack: It can bundle multiple JavaScript files in..