JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 4702478
  • Score
    100M100P100Q206421F

cookie parsing with signatures

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 Build Status NPM Version

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.

Install

$ npm install cookie-parser

API

var cookieParser = require('cookie-parser')

cookieParser(secret, options)

  • secret a string used for signing cookies. This is optional and if not specified, will not parse signed cookies.
  • options an object that is passed to cookie.parse as the second option. See cookie for more information.
    • decode a funcction to decode the value of the cookie

Example

var cookieParser = require('cookie-parser');

connect()
 .use(cookieParser('optional secret string'))
 .use(function(req, res, next){
   res.end(JSON.stringify(req.cookies));
 })

License

MIT