Skip to content

Latest commit

 

History

History

express

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Notejam: Express

Notejam application implemented using Express.js microframework.

Express version: 4.2

Middlewares/extentions used:

Installation and launching

Cloning

Clone the repo:

$ git clone git@github.com:komarserjio/notejam.git YOUR_PROJECT_DIR/

Install environment

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

Launch

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

Running unit tests

Run unit tests:

$ cd YOUR_PROJECT_DIR/express/notejam/
$ ./node_modules/mocha/bin/mocha tests

Contribution

Please send your pull requests in the master branch.

Always prepend your commits with a framework name:

Express: Implemented sign in functionality