Express middleware for wrapping res.cookie to use some sane defaults for the cookie config.
var express = require('express');
var cookieDomain = require('cookie-domain');
var app = express();
app.use(cookieDomain());
app.get('/', function(req, res, next) {
res.cookie('a', 1);
res.cookie('b', 1, { maxAge: 86400 });
res.cookie('c', 1, { expires: false });
res.cookie('d', 1, false);
res.send('hello world');
});
Installation and Environment Setup
Install node.js (See download and install instructions here: http://nodejs.org/).
Clone this repository
> git clone git@github.com:mantacode/node-cookie-domain.git
cd into the directory and install the dependencies
> cd cookie-domain
> npm install && npm shrinkwrap --dev
Running Tests
Install coffee-script
> npm install coffee-script -g
Tests are run using grunt. You must first globally install the grunt-cli with npm.
> sudo npm install -g grunt-cli
Unit Tests
To run the tests, just run grunt
> grunt spec