Exactly what it says on the tin...
This is a work in progress and I add a bit to this project every once in a while.
Technologies
Part | System |
---|---|
Bundling | Webpack |
Stylesheets | SCSS |
Transpilation | Babel |
Folder Structure
Folder | Use |
---|---|
app |
Application Code |
app/style |
SCSS Stylesheets |
app/assets |
Static Assets for the Site |
public |
Build Output Directory for Site |
To build the app, run
$ npx webpack
Or
$ npm run build
The boilerplate also provides a development server which could be run with
$ npx webpack-dev-server
Or
$ npm start