Package Exports
- @zero-dependency/cookie
- @zero-dependency/cookie/dist/index.es.js
- @zero-dependency/cookie/dist/index.umd.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@zero-dependency/cookie) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@zero-dependency/cookie
Installation
npm install @zero-dependency/cookie
yarn add @zero-dependency/cookie
pnpm add @zero-dependency/cookie
Usage
import { Cookie } from '@zero-dependency/cookie'
const cookie = new Cookie({ /* options */ })
// Create a cookie.
cookie.set('name', 'value')
// Create a cookie that expires 7 days from now.
cookie.set('name', 'value', { expires: 7 })
// Create a cookie.
cookie.get('name')
// Get all cookies.
cookie.list()
// Check if a cookie exists.
cookie.has('name')
// Remove a cookie.
cookie.remove('name')
// Remove a cookie by passing the exact same path and domain as when the cookie was set.
cookie.set('name', 'value', { path: '/some-path' })
cookie.remove('name'); // ❌
cookie.remove('name', { path: '/some-path' }); // ✅
// Cookie attribute defaults can be set globally.
cookie.setAttributes({ path: '/', domain: '.example.com' })