Skip to content

Instantly share code, notes, and snippets.

@ovaillancourt
Created October 15, 2012 14:39
Show Gist options
  • Save ovaillancourt/3892821 to your computer and use it in GitHub Desktop.
Save ovaillancourt/3892821 to your computer and use it in GitHub Desktop.
app.get( '/bob', function( req, res, next ){
if( !req.session ){
console.log( 'no session!' );
}
else{
console.log( req.session );
req.session.counter++;
}
res.send( 'my counter', req.session.counter ++ );
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment