@itznotabug/appexpress-nocookies
v0.0.4
Published
A cookie remover middleware for AppExpress.
Downloads
165
Readme
AppExpress No-Cookies Middleware
This module allows you to serve resources without any cookies.
Any key
in the headers containing the word cookie
will be stripped from both incoming requests and outgoing
responses.
Installation
Add the middleware like this -
npm install @itznotabug/appexpress-nocookies
Usage
// import
import AppExpress from '@itznotabug/appexpress';
import noCookies from '@itznotabug/appexpress-nocookies';
// setup
const express = new AppExpress();
express.middleware(noCookies({ excludes: ['/cookie-allowed'] }));