/koo

Client-side cookies reader & writer

Primary LanguageJavaScriptMIT LicenseMIT

koo

Client-side cookies reader & writer

Install

npm install --save koo

API

koo.get([name])

Get cookies

koo.get(); // {hello: 'world'}
koo.get('hello'); // 'world'

koo.set(name, value[, options])

Set cookie with options object:

  • expires
  • path
  • domain
  • samesite
  • secure

koo.remove(name[, options])

Remove cookie

License

MIT