Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@
*~
.idea
.DS_Store
node_modules/
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,11 @@

1. Make sure you have `bower` [installed](https://bower.io/#install-bower): `npm install -g bower`
2. Run `bower install` to download all dependencies
3. Make sure you have `webpack` and `webpack-dev-server` installed: `npm install -g webpack webpack-dev-server`

## Running the server

1. Run `webpack-dev-server --progress --colors`
2. Go to [http://localhost:8080/webpack-dev-server/](http://localhost:8080/webpack-dev-server/)
3. Webpack bundles the files once they are changed, so no need to restart the server to pickup new code!

Loading