Notejam application implemented using Express.js microframework.
Express version: 4.2
Middlewares/extentions used:
- Passport.js for authentication
- Node ORM 2 for database
- Mocha and Superagent for testing
- ... and others
Clone the repo:
$ git clone [email protected]:komarserjio/notejam.git YOUR_PROJECT_DIR/
Use npm to manage dependencies.
Install dependencies
$ cd YOUR_PROJECT_DIR/express/notejam/
$ npm install
Create database schema
$ cd YOUR_PROJECT_DIR/express/notejam/
$ node db.js
Start built-in web server:
$ cd YOUR_PROJECT_DIR/express/notejam/
$ DEBUG=* ./bin/www
Go to http://127.0.0.1:3000/ in your browser
Run unit tests:
$ cd YOUR_PROJECT_DIR/express/notejam/
$ ./node_modules/mocha/bin/mocha tests
Please send your pull requests in the master
branch.
Always prepend your commits with a framework name:
Express: Implemented sign in functionality