0.5.0-pre.0 β€’ Published 2 years ago

@worker-tools/location-polyfill v0.5.0-pre.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Location Polyfill

A Location polyfill for Cloudflare Workers.

Usage

Import the polyfill in your application code. Make sure it's included at the top, before any other dependencies that register fetch event listeners.

import '@worker-tools/location-polyfill';

This will populate the global location field with the url field from incoming requests. In CF Workers, this will typically be your script's workers.dev address.

Note that the location field will be overwritten with each request! This is because I haven't been able to find a way to access the worker's URL outside a fetch event context. Let me know if there's a better way!

To avoid sniffing the url from every request, you can provide the location via a global variable called WORKER_LOCATION. In CF Workers, add the following to your wrangler.toml to define this variable.

[vars]
  WORKER_LOCATION = 'http://localhost:8787'

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.

0.3.2-pre.2

2 years ago

0.3.2-pre.3

2 years ago

0.5.0-pre.0

2 years ago

0.3.2-pre.4

2 years ago

0.4.0-pre.0

2 years ago

0.4.1

2 years ago

0.4.0

2 years ago

0.3.2-pre.1

2 years ago

0.3.2-pre.0

2 years ago

0.3.1

3 years ago

0.3.0

3 years ago

0.2.1

3 years ago

0.2.0

3 years ago

0.2.2

3 years ago

0.1.0

3 years ago