koa-cookies
TypeScript icon, indicating that this package has built-in type declarations

4.0.2 • Public • Published

koa-cookies

Set, clear, and parse cookies in your Koa application.

Donate


Installation

npm i koa-cookies

Usage

// set up your koa server, koa-router, etc.
import { clearCookie, setCookie, parseCookie } from 'koa-cookies'

// Use in routes
app.get('/foo', async (ctx, next) => {
  await setCookie('bar', 'baz')(ctx) // => void
})
app.get('/things', async (ctx) => {
  await clearCookie('foo')(ctx) // => void
})
app.get('/stuff', async (ctx) => {
  await parseCookie('bar')(ctx) // => string value for this cookie key
})

// Use as middlewares
app.use(setCookie('foo', 'bar', config)) // set on every request
app.use(clearCookie('baz', config)) // clear on every request
app.use(parseCookie()) // always add all cookies to ctx.cookies

The config argument is optional. Defaults:

setCookieConfig = {
  domain: ctx.host,
  maxAge: one week,
  expires: one week from now
}

clearCookieConfig = {
  domain: ctx.host,
  maxAge: 1 second,
  expires: 1970-01-01T00:00:00.001Z
}

LICENSE

Readme

Keywords

Package Sidebar

Install

npm i koa-cookies

Weekly Downloads

15,810

Version

4.0.2

License

MIT

Unpacked Size

20.8 kB

Total Files

16

Last publish

Collaborators

  • zacanger