Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andrepolischuk/koo
Client-side cookies reader & writer
https://github.com/andrepolischuk/koo
cookie
Last synced: 5 days ago
JSON representation
Client-side cookies reader & writer
- Host: GitHub
- URL: https://github.com/andrepolischuk/koo
- Owner: andrepolischuk
- License: mit
- Created: 2014-10-07T20:59:58.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2021-02-25T11:57:04.000Z (almost 4 years ago)
- Last Synced: 2024-12-10T12:17:39.419Z (30 days ago)
- Topics: cookie
- Language: JavaScript
- Homepage:
- Size: 18.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# koo
> Client-side cookies reader & writer
## Install
```sh
npm install --save koo
```## API
### koo.get([name])
Get cookies
```js
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