@lambda-middleware/no-sniff
v1.0.2
Published
A middleware for adding the content type options no-sniff header to AWS lambdas.
Downloads
1
Maintainers
Readme
@lambda-middleware/no-sniff
A middleware for adding the content type options no-sniff header to AWS lambdas.
Lambda middleware
This middleware is part of the lambda middleware series. It can be used independently.
Usage
import { noSniff } from "@lambda-middleware/no-sniff";
// This is your AWS handler
async function helloWorld() {
return {
statusCode: 200,
body: "",
};
}
// Wrap the handler with the middleware
export const handler = noSniff()(helloWorld);