worker-tools / deno-fetch-event-adapter

Dispatches global fetch events using Deno's native http server.

Home Page:https://workers.tools/deno-fetch-event-adapter

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Deno Fetch Event Adapter

Dispatches global fetch events using Deno's native HTTP server.

It is mostly intended as a temporary solution until Deno implements the Service Worker spec directly.
This has been scrapped, but this module works just fine for local testing, developing Cloudflare Workers while offline, and similar use cases.

Example

// file: "worker.js"
import 'https://deno.land/x/fetch_event_adapter/listen.ts';

// This module adds a global `FetchEvent`
if (typeof FetchEvent !== 'undefined') console.log(true);

// This module also adds global type declarations, s.t. this type-checks:
self.addEventListener('fetch', event => {
  const ip = event.request.headers.get('x-forwarded-for');
  event.respondWith(new Response(`Hello ${ip ?? 'World'}`));
});

Your script needs the --allow-net permissions. It also requires a --location, to know on which port to listen for incoming connections:

deno run --allow-net --location=http://localhost:8000 worker.js

If you set the --location to either HTTPS or port 443, you have to provide a --cert and a --key parameter. Your script will also need the read permission to read the files:

deno run --allow-net --allow-read --location=https://localhost:8000 worker.js \
  --cert=./path/to/cert.pem \
  --key=./path/to/key.pem

Error Handling

If an error occurs during estabslishing a connection (e.g. invalid certificate, etc...), the error is dispatched as a global error event rather then crashing the process. You can add custom logging like this:

self.addEventListener('error', event => {
  console.warn(event.message);
  console.warn(event.error);
});

This module is part of the Worker Tools collection
⁕

Worker Tools are a collection of TypeScript libraries for writing web servers in Worker Runtimes such as Cloudflare Workers, Deno Deploy and Service Workers in the browser.

If you liked this module, you might also like:

  • 🧭 Worker Router --- Complete routing solution that works across CF Workers, Deno and Service Workers
  • πŸ”‹ Worker Middleware --- A suite of standalone HTTP server-side middleware with TypeScript support
  • πŸ“„ Worker HTML --- HTML templating and streaming response library
  • πŸ“¦ Storage Area --- Key-value store abstraction across Cloudflare KV, Deno and browsers.
  • πŸ†— Response Creators --- Factory functions for responses with pre-filled status and status text
  • 🎏 Stream Response --- Use async generators to build streaming responses for SSE, etc...
  • πŸ₯ JSON Fetch --- Drop-in replacements for Fetch API classes with first class support for JSON.
  • πŸ¦‘ JSON Stream --- Streaming JSON parser/stingifier with first class support for web streams.

Worker Tools also includes a number of polyfills that help bridge the gap between Worker Runtimes:

  • ✏️ HTML Rewriter --- Cloudflare's HTML Rewriter for use in Deno, browsers, etc...
  • πŸ“ Location Polyfill --- A Location polyfill for Cloudflare Workers.
  • πŸ¦• Deno Fetch Event Adapter --- Dispatches global fetch events using Deno’s native HTTP server.

Fore more visit workers.tools.

About

Dispatches global fetch events using Deno's native http server.

https://workers.tools/deno-fetch-event-adapter

License:MIT License


Languages

Language:TypeScript 100.0%