cookie-signature-edge
v1.0.7
Published
A package that sign and unsign cookies for Edge API Routes.
Downloads
227
Maintainers
Readme
cookie-signature-edge
A package that sign and unsign cookies for Edge API Routes.
Installation
With NPM
npm i cookie-signature-edge --save
With Yarn
yarn add cookie-signature-edge --save
Example
Use this module in Edge API Routes
import {sign,unsign} from 'cookie-signature-edge'
export const config = {
runtime: 'edge',
}
export default async (req) => {
const value = "hello2";
const secret='qwertyuiasdfghjkzxcvbnm';
const signedValue=await sign(value,secret);
const unsignedValue = await unsign(signedValue,secret)
console.log(unsignedValue);
// value===unsignedValue
// unfinished code ...
}