Package detail

lightcookie

ethanent636.3kSEE LICENSE IN LICENSE.mddeprecated1.0.25

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

Super lightweight cookie parser and serializer

cookie, lightcookie, cookie-parse, cookie-serialize

readme

lightcookie logo


Super lightweight cookie parser and serializer

Full documentation | GitHub | NPM

Installation

npm i --save lightcookie

Parsing cookie strings

const lightcookie = require('lightcookie')

lightcookie.parse('foo=bar; copyright=%C2%A9;another=test') // {foo: 'bar', copyright: '©', another: 'test'}

Serializing objects to cookie strings

lightcookie.serialize({
    name: 'Ethan',
    'HttpOnly': null
}) // 'name=Ethan;HttpOnly'

Why lightcookie?

lightcookie is super lightweight. It's over much more lightweight than cookie, another popular cookie package. lightcookie is the way to go for efficiency as it parses using JS regular expressions!

Documentation

Have a look at the full documentation for details about using the library!