angusfretwell / es6-module-boilerplate

A boilerplate for writing npm modules in ES6

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

es6-module-boilerplate

A boilerplate for writing npm modules in ES6.

Usage

  1. Shallow-clone the repository
$ git clone --depth=1 --branch=master git@github.com:angusfretwell/es6-module-boilerplate.git
  1. Rename, and then change into the directory
$ mv es6-module-boilerplate new-module && cd new-module
  1. Remove the git repository, and the initialize a new one
$ rm -rf .git && git init
  1. Replace this README with the example one
$ rm README.md && mv README.example.md README.md
  1. Update package.json and install dependencies
$ npm init && npm install
  1. Start coding!
$ $EDITOR .

License

The MIT License (MIT)

Copyright (c) 2016 Angus Fretwell

About

A boilerplate for writing npm modules in ES6

License:MIT License


Languages

Language:JavaScript 100.0%