Skip to content

borderless/fetch-final-handler

Repository files navigation

Fetch Final Handler

NPM version NPM downloads Build status Test coverage

Final HTTP 404 responder for fetch, e.g. Cloudflare Workers.

Installation

npm install @borderless/fetch-final-handler --save

Usage

import { compose } from "throwback";
import { finalHandler } from "@borderless/fetch-final-handler";

const app = compose([get(), post()]);
const req = new Request("/");

app(req, finalHandler());

TypeScript

This project is written using TypeScript and publishes the definitions directly to NPM.

License

MIT