tritowntim / webpack-tutorial

webpack-tutorial

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

netstuff: learning webpack

Pro React Book Tutorial

Simplest possible usage to bundle on demand
node_modules/.bin/webpack app/main.js public/bundle.js
webpack-dev-server

Serve bundled and transpiled code, refresh upon change

npm start
As an on demand npm task runner

All scripts in package.json already have node_modules/.bin in the path

 // npm setup in package.json
"scripts": {
  "start" : "webpack"
},
npm start

About

webpack-tutorial


Languages

Language:JavaScript 73.9%Language:CSS 15.9%Language:HTML 10.2%