Skip to content
This repository has been archived by the owner on Oct 1, 2019. It is now read-only.

Latest commit

 

History

History
62 lines (42 loc) · 1.35 KB

README.md

File metadata and controls

62 lines (42 loc) · 1.35 KB

version license

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

Version 3.1

  • Boilerplate using webpack + babel
  • Removing unnecessary files making project start-up easier

Getting Started

Install NodeJS

# Clone this repository
$ git clone git@github.com:interaminense/boilerplate.git

# install dependencies
$ npm install

Folders and Files


├── README.md
├── dist
│   └── bundle.js
├── src
│   ├── utils
│   │   └── app.js
│   └── index.js
├── index.html
├── webpack.config.js
└── package.json

Tasks

  • npm run build: build the project in product mode
  • npm run dev: build and watch the project in develop mode
  • npm run start: start the project using http-server

See also

boilerplate using webpack 3.0

boilerplate using gulpjs + babel