https://github.com/dafrok/cookie-proxy
Graceful cookie API
https://github.com/dafrok/cookie-proxy
Last synced: over 1 year ago
JSON representation
Graceful cookie API
- Host: GitHub
- URL: https://github.com/dafrok/cookie-proxy
- Owner: Dafrok
- License: mit
- Created: 2016-08-03T10:47:08.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-10-10T10:38:50.000Z (almost 10 years ago)
- Last Synced: 2024-04-15T00:01:23.996Z (over 2 years ago)
- Language: JavaScript
- Size: 4.88 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cookie-proxy
Graceful cookie handler
## Usage
```javascript
import cookie from 'cookie-proxy'
cookie.foo = 'Awesome!'
console.log(document.cookie) // => "foo=Awesome!"
console.log(cookie.foo) // => "Awesome!"
```
## Install
```
$ npm i cookie-proxy
```