A template for creating a Node.js application using Hapi in CoffeeScript.
- clone:
$ git clone git@github.com:Wayfarer247/hapi-starter.git
- cd:
$ hapi-starter
- install:
$ npm install
- run:
$ make
- Update the
package.json
file with the correct information for the new project. Also update the git repo:git remote set-url origin git@github.com:user/project.git
- Moved server to it's own class
- Created a new init script that starts the server
- coffee_bridge points to new init script
- Changed tests to just be integration tests with Hapi's inject method
- Simplified code
- Added code coverage
- Added linting
- First Version