webpack / example-app

[OUTDATED] example web app for webpack

Home Page:http://webpack.github.com/example-app/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

webpack webapp example

For demonstration this app uses npm and jam package manager.

Install and build this app with:

# You need to have node.js installed
npm install jamjs@0.2.x webpack@1.2.x webpack-dev-server@1.2.x -g

cd example-app
npm install
jam install

webpack -p --progress --colors --devtool sourcemap --hot
webpack -p --progress --colors --devtool sourcemap --hot --config webpack-update1.config.js
webpack -p --progress --colors --devtool sourcemap --hot --config webpack-update2.config.js
index.html

NOTE: It's a production ready build, so it may take a while.

For watching and debugging you can alternatively compile with:

webpack -d --progress --colors --watch

Or use the development server:

npm start
# which is equal to
webpack-dev-server -d --colors

And open http://localhost:8080.

About

[OUTDATED] example web app for webpack

http://webpack.github.com/example-app/


Languages

Language:JavaScript 74.3%Language:CSS 25.7%