- boilerplate.ls
Written
node . [options]
defaults to: package.json.main: /build/api/index.js
or for development:
make <install>
build
test
run
watch
watchtest
chainable
make clean run
make clean watch
make install
- npm install
- make clean build
make build
- compiles all source files
make run
- make build
- Starts
node
with (package.json).main
make test
- run mocha on all files in ./specs (--recursive)
- mocha uses a LiveScript adapter so no compile step is required
make clean
- removes
./build