Skip to content

Commit

Permalink
Updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
scott2449 committed Jul 6, 2011
1 parent 6e4b037 commit e467dea
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# connect-mongoose

connect-mongoose is a mongoDB session store backed by mongoose(http://github.com/LearnBoost/mongoose).

## Installation

via npm:

TBD ... $ npm install connect-mongoose

## Options

TBD - See example, until future versions warrant more complex configuration

## Example

You have a complete example on `example/index.js`.

var connect = require('connect')
var sessionStore = require("connect-mongoose")(express);

var server = express.createServer(express.cookieParser(), express.session({
secret : "secret",
store : new sessionStore()
}));

## Tests

TBD

0 comments on commit e467dea

Please sign in to comment.