@lambda-middleware/no-sniff

A middleware for adding the content type options no-sniff header to AWS lambdas.

Usage no npm install needed!

<script type="module">
  import lambdaMiddlewareNoSniff from 'https://cdn.skypack.dev/@lambda-middleware/no-sniff';
</script>

README

@lambda-middleware/no-sniff

npm version downloads open issues debug build status codecov dependency status devDependency status

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