Skip to content

Latest commit

 

History

History
40 lines (21 loc) · 2.19 KB

README.md

File metadata and controls

40 lines (21 loc) · 2.19 KB

Poang - A sample node.js/MongoDB app for Strider & Heroku/MongoLab

Poang demonstrates a few of the ways that we write tests in Node.js for Strider (Strider is a hosted continuous deployment platform for Node.js and Python. Learn more at StriderApp.com).

Poang (github) is a Node.js/MongoDB app built using the Express framework. Poang uses Everyauth for local authentication, Mongoose-Auth to connect Everyauth to MongoDB (and Mongoose as the ODM) for account persistence, and Connect-Mongo as a session store. Most of the code in app.js was generated by Express and all of the code in auth.js after the Comment schema is straight from the Mongoose-Auth docs.

For testing, Poang uses the Mocha test framework, should for assertions, Sinon.JS for mocks & stubs, and Zombie.js for lightweight integration testing.

For more details, please see Steve's blog post that walks through the various tests in Poang.

Installation

A) To use Poang with Strider, simply fork Poang and then add it to Strider via the 'Add Repo' workflow. Then skip down to 'deploy to Heroku' below.

B) To install Poang on your dev box:

  1. Do a git clone:

    git clone git://git@github.com:BeyondFog/Poang.git

  2. cd into the project directory and then install the necessary node modules:

    npm install -d

  3. start up MongoDB if it's not already running:

    mongod --noprealloc --nojournal

  4. start the node process:

    node app.js

Deploy to Heroku

After you have created a new app on Heroku and pushed the code via git, you will need to use the Heroku Toolbelt from your command line to add the free MongoLab starter addon:

heroku addons:add mongolab:starter --app [your_app_name]

Strider is a hosted continuous deployment platform for Python and node.js. Learn more at StriderApp.com