You need to have node.js installed.
Start with npm run init
This command will init a git repository on your machine, install dependencies and remove useless files and directories for your project. After that, this command won't be available anymore.
Run the local webpack-dev-server with hotreload and autocompile on:
- local: http://localhost:8080/
- network: http://your-local-ip:8080/
$ npm run dev
- @:
src/
- @js:
src/js/
- @style:
src/style/
- @fonts:
src/fonts/
- @assets:
src/assets/
- eslint
- prettier
- babel
- stylus
Build the current application (default output in dist/
).
$ npm run build