cookie-store
TypeScript icon, indicating that this package has built-in type declarations

3.0.0 • Public • Published

cookie-store

Build Status npm version

A polyfill to allow use of the Cookie Store API in modern browsers that don't support it natively, including IE11. Also compatible with TypeScript.

Installation

npm install cookie-store

Basic Example

// import polyfill and declare types
import 'cookie-store';
 
// set a cookie
await cookieStore.set('forgive', 'me');
// get a cookie
const foo = await cookieStore.get('forgive');
console.log(foo); // { name: 'forgive', value: 'me' }
 
// set another cookie
await cookieStore.set('forget', 'it');
 
// get multiple cookies
const cookies = await cookieStore.getAll();
console.log(obj); // [{ name: 'forgive', value: 'me' }, { name: 'forget', value: 'it' }]
 
// delete a cookie
await cookieStore.delete('forget');

Dependents (3)

Package Sidebar

Install

npm i cookie-store

Weekly Downloads

1,497

Version

3.0.0

License

MIT

Unpacked Size

16.9 kB

Total Files

5

Last publish

Collaborators

  • mkay581