Webpack version: 5+
- Faster builds with persistent caching
- Smaller bundle sizes (better tree-shaking)
- Better long term caching
If you need Webpack4 take a look branch webpack_v4
Intro into Webpack you can watch on youtube (russian only): webpack-intro
- Open project in VSCode (for example)
- Run command
npm i
in terminal (console) for installing all required packages (Node.js is required: https://nodejs.org/en/) - For building project you can use the following commands:
npm run build-prod
- building production version (minimized and optimized). The project will be builded intobuild
folder. You can change destination inwebpack.common.js (line 19)
npm run build-dev
- building development versionnpm run serve
- building development hot-reloaded version with webpack-dev-server
-
Before build without lint use
npm ci --ignore-scripts --omit=optional --omit=peer
-
Before lint with auto-fix use
npm i --ignore-scripts
-
- devDependencies - packages for
dev & prod build
(so for prod need dependencies + devDependencies) - dependencies - UI (client-side) packages
- optionalDependencies - packages for
linters
&development
(webpack-dev-server, ESLint, StyleLint etc.)
- devDependencies - packages for
- CSS Modules: https://marketplace.visualstudio.com/items?itemName=clinyong.vscode-css-modules
- CSS Modules Syntax Highlighter: https://marketplace.visualstudio.com/items?itemName=andrewleedham.vscode-css-modules
- ESlint: https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint
- StyleLint: https://marketplace.visualstudio.com/items?itemName=stylelint.vscode-stylelint
- SCSS intellisense: https://marketplace.visualstudio.com/items?itemName=mrmlnc.vscode-scss
- Path autocomplete: https://marketplace.visualstudio.com/items?itemName=ionutvmi.path-autocomplete
- Prettier - Code formatter: https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode
- Import Cost: https://marketplace.visualstudio.com/items?itemName=wix.vscode-import-cost
- Markdownlint: https://marketplace.visualstudio.com/items?itemName=DavidAnson.vscode-markdownlint
- EditConfig for VS Code: https://marketplace.visualstudio.com/items?itemName=EditorConfig.EditorConfig
- Spell Checker: https://marketplace.visualstudio.com/items?itemName=streetsidesoftware.code-spell-checker
- TodoTree: https://marketplace.visualstudio.com/items?itemName=Gruntfuggly.todo-tree
- Lint. Integrated the most popular linters: ESlint, StyleLint
- BrowserList. All required browsers are pointed in .browserslistrc, so project will be compiled according to required browsers (babel, postcss, styleLint uses this file)
- BrowserList. StyleLint. Integrated no-unsupported-browser-features, so during the css,scss-coding styleLint will show on-css rule that unsupported (according to .browserslistrc)
- MockServer. For mocking api responses integrated webpack-mock-server that supports JS,TS and hot-replacement:
- Styles. Integrated CSS-Modules and postcss-autoprefixer, postcss-normalize, CssMinimizerPlugin (uses css-nano for production build)
- All packages optimized for CI/CD. See CI/CD section
- web-ui-pack - nice package with form-controls, smart-popup, spinner etc. & useful helpers
- ytech-js-extensions - generic extensions for Arrays, Dates (that lacks in web-ui-pack)
- Add icomoon to fonts
- Impossible to install anything with
npm i
check if your NodeJS version matches with pointed in package.json: engines.node section (use NVM to easy manage NodeJS versions)
- Impossible to run scripts from package.json
try to change backslashes (npm-cli issue that flows between versions time to time) from
.\\node_modules\\.bin\\webpack serve --open --config webpack.devServer.js"
to./node_modules/.bin/webpack serve --open --config webpack.devServer.js"