Skip to content

Instantly share code, notes, and snippets.

@codepunkt
Created May 31, 2011 18:50
Show Gist options
  • Save codepunkt/1001044 to your computer and use it in GitHub Desktop.
Save codepunkt/1001044 to your computer and use it in GitHub Desktop.
ExpressJS: set/delete cookies
// Dependencies.
var express = require('express')
app = module.exports = express.createServer(),
del = function(req, res) { res.clearCookie('login_token'); res.redirect('/'); },
set = function(req, res) { res.cookie('login_token', +new Date(), { maxAge: 3600000, path: '/' }); res.redirect('/'); };
// Config
app.configure(function() {
app.use(express.bodyParser());
app.use(express.cookieParser());
app.use(app.router);
});
// Routes
app.get('/', function home(req, res) {
res.end('<a href="/set">set</a> <a href="/del/a">del</a> <a href="/del">rlydel</a>');
console.log(req.cookies);
});
app.get('/set', set);
app.get('/del/a', del);
app.get('/del', del);
// Server
app.listen(3000);
@trananhtuyen
Copy link

in nodejs module request or express have function curl_setopt($ch, CURLOPT_COOKIESESSION, TRUE); code PHP

@wzup
Copy link

wzup commented Jul 5, 2016

How to clear all cookies programmatically? Not only those you explicitly set yourself in your app with `res.cookie(...), but also those ones that third-party services set themselves, like FB during login with FB. Is it possible at all? This is for the sake of testing, to clear all cookies, that is reset the state in order to start a test again.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment