Package Exports
- cookie-parser
- cookie-parser/lib/parse
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (cookie-parser) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
cookie-parser
Parse Cookie header and populate req.cookies with an object keyed by the cookie
names. Optionally you may enabled signed cookie support by passing a secret string,
which assigns req.secret so it may be used by other middleware.
var cookieParser = require('cookie-parser');
connect()
.use(cookieParser('optional secret string'))
.use(function(req, res, next){
res.end(JSON.stringify(req.cookies));
})install
npm install cookie-parserLicense
MIT