Skip to content

Latest commit

 

History

History
43 lines (28 loc) · 2.33 KB

README.md

File metadata and controls

43 lines (28 loc) · 2.33 KB

YEPS Cookie Parser

NPM

npm version Build Status Coverage Status Linux Build Windows Build

Dependency Status devDependency Status NSP Status

License GitHub stars GitHub forks GitHub issues Twitter

How to install

npm i -S yeps-cookie-parser

How to use

const App = require('yeps');
const cookies = require('yeps-cookie-parser');

const app = new App();

app.all([
    cookies();
]);

app.then(async ctx => {
    console.log(ctx.request.cookies);
});