koa-cookie
DefinitelyTyped icon, indicating that this package has TypeScript declarations provided by the separate @types/koa-cookie package

1.0.0 • Public • Published

koa-cookie

Cookie parser middleware for koa. Can also be used with koa-router.

Install

npm install koa-cookie --save

Example

import Koa from 'koa';
import cookie from 'koa-cookie';
 
const app = Koa();
app.use(cookie());
 
app.use(async function (ctx, next) {
  const cookies = ctx.cookie;
  /*
    if cookies sent are of the form: 'name=abc; age=20; token = xyz;'
    Then ctx.cookie is an object of the form:
    {
      name: 'abc',
      age: '20',
      token: 'xyz'
    }
  */
});
 

Example with koa-router

var app = require('koa')();
var cookie = require('koa-cookie');
var router = require('koa-router')();
 
router.use(cookie());
 
router.get('/', async (context) => {
  const cookies = context.cookie;
  /*
    if cookies sent are of the form: 'name=abc; age=20; token = xyz;'
    Then ctx.cookie is an object of the form:
    {
      name: 'abc',
      age: '20',
      token: 'xyz'
    }
  */
});
 
app
  .use(router.routes())
  .use(router.allowedMethods());

Package Sidebar

Install

npm i koa-cookie

Weekly Downloads

4,182

Version

1.0.0

License

ISC

Last publish

Collaborators

  • vpal