koo
v1.5.0
Published
Client-side cookies reader & writer
Downloads
33
Maintainers
Readme
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