Curio is a modular Nodejs app built on top of express and mongodb
I wanted to build out my own boilerplate Nodejs app that can be extended to any website with a set of Admin tools.
Make sure you have the following installed
- Mongodb
- Nodejs
Clone the repository:
git clone git@github.com:Tivoli/curio.git
Update the remote to your own repo
cd curio
git remote rm origin
git remote add origin <new_url>
Install the modules
npm install -g coffee-script nodemon
npm install
Nodemon is used in development to restart with file changes, simply run nodemon
In other environments coffee boot.coffee will start up and fork the server for each CPU
The default tests will run both coffeelint and mocha tests
npm test
To make the coverage file
make test-cov
Licensed under the MIT license.