An open API service indexing awesome lists of open source software.

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

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
```