This boilerplate was built in order to aid in the process of creating static applications.
I use it:
- babel-core
- babel-preset-env
- babel-loader
- webpack
- webpack-cli
- Boilerplate using webpack + babel
- Removing unnecessary files making project start-up easier
Install NodeJS
# Clone this repository
$ git clone git@github.com:interaminense/boilerplate.git
# install dependencies
$ npm install
├── README.md
├── dist
│ └── bundle.js
├── src
│ ├── utils
│ │ └── app.js
│ └── index.js
├── index.html
├── webpack.config.js
└── package.json
npm run build
: build the project in product modenpm run dev
: build and watch the project in develop modenpm run start
: start the project using http-server