Skip to content

Instantly share code, notes, and snippets.

@avh4
Created July 11, 2015 22:57
Show Gist options
  • Save avh4/81c133f6b9d479e56fd0 to your computer and use it in GitHub Desktop.
Save avh4/81c133f6b9d479e56fd0 to your computer and use it in GitHub Desktop.
Starting a node.js project

Requires

  • git
  • nodejs (npm)

Create the project:

PROJECT="my-project-name"
mkdir "$PROJECT"
cd "$PROJECT"
git init
npm init
  # name: (default)
  # version: (default)
  # description: what my project does
  # entry point: (default)
  # test command: mocha src/test/js
  # git repository: (empty)
  # keywords: (empty)
  # author: My Name <[email protected]>
  # license: your choice
  # Is this ok? (default)

Set up testing

mkdir -p src/test/js
npm install --save-dev mocha
npm install --save-dev expect
npm test

Example test:

var expect = require('expect');
describe('Array', function() {
  describe('#indexOf()', function () {
    it('should return -1 when the value is not present', function () {
    	expect([1,2,3].indexOf(5)).toEqual(-1);
    	expect([1,2,3].indexOf(0)).toEqual(-1);
    });
  });
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment