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

✒️ This boilerplate was built in order to aid in the process of creating static applications

License

Notifications You must be signed in to change notification settings

interaminense/boilerplate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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