Skip to content
koa-cookie / 1.4.5

koa-cookie 1.4.5

Install from the command line:
Learn more about npm packages
$ npm install @uswitch/koa-cookie@1.4.5
Install via package.json:
"@uswitch/koa-cookie": "1.4.5"

About this version

koa-cookie

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

Install

npm install @uswitch/koa-cookie --save

Example

import Koa from 'koa';
import cookie from '@uswitch/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('@uswitch/koa-cookie');
var router = require('koa-router')();

router.use(cookie.default());
 
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());

Details


Assets

  • koa-cookie-1.4.5.tgz

Download activity

  • Total downloads 63
  • Last 30 days 0
  • Last week 0
  • Today 0