JSPM

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

Simple cookie parser & serializer

Package Exports

  • @juji/simple-cookie
  • @juji/simple-cookie/index.js

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 (@juji/simple-cookie) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

simple-cookie

simple cookie serializer & parser for node.js

NPM Version

install

npm install simple-cookie

usage

var cookie = require('simple-cookie');

var cookieObject = {
    name: 'cookieName',
    value: 'cookie value',
    expires: (new Date()).valueOf() + 500000,
    path: '/',
    domain: 'domain.com',
    httponly: false,
    secure: true,
    samesite: 'cookie samesite'
}

What is cookieObject:

name String : cookie name

value String : cookie value

expires DateString | Number | Date (optional) : expire date (default type is Date), value will be used as a parameter in new Date. e.g. new Date(yourDateString).

path String (optional) : cookie path, defaults to /

domain String (optional) : cookie domain

httponly Boolean (optional) : defaults to false

secure Boolean (optional) : defaults to false

samesite String : samesite

##methods

var cookieString = cookie.stringify( cookieObject );
// cookieName=cookie%20value; Expires: Sat, 15-Aug-2015 17:41:05 GMT; Max-Age: 31449600; Path=/; domain=domain.com; secure; samesite=None


cookie.parse( cookieString  [, defaultPath]  [, defaultDomain]  );
// will create object like the 'cookieObject'


cookie.tokenize([
    {name:'cookie1', value: 'cvalue1'},
    {name:'cookie2', value: 'cvalue2'},
    {name:'cookie3', value: 'cvalue3'}
]);
// cookie1=cvalue1; cookie2=cvalue2; cookie3=cvalue3

cheers,

jujiyangasli.com