1.4.11 • Published 7 months ago

@uswitch/koa-cookie v1.4.11

Weekly downloads
887
License
ISC
Repository
github
Last release
7 months ago

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());
1.4.5

8 months ago

1.4.4

8 months ago

1.4.3

9 months ago

1.4.11

7 months ago

1.4.8

7 months ago

1.4.2

2 years ago

1.4.1

2 years ago

1.2.8

2 years ago

1.2.5

2 years ago

1.4.0

2 years ago

1.2.9

2 years ago

1.2.13

2 years ago

1.2.10

2 years ago

1.2.11

2 years ago

1.2.14

2 years ago

1.2.3

3 years ago

1.2.2

3 years ago

1.2.1

3 years ago

1.2.0

3 years ago

1.3.0

3 years ago

1.1.0

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.2

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago