$ npm install
or
$ yarn
For development server, webpack-dev-server is reasonable. It monitors update files and rebuild them automatically. Since the webpack cli command is registerd in package.json
in this project, just type the following command to run webpack-dev-server:
$ npm start
or
$ yarn start
To put compiled files into dist
directory, type the following command.
$ npm run build
or
$ yarn build