![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@worker-tools/response-creators
Advanced tools
A collection of factory functions for Fetch API Response types with pre-filled status and status-text headers for well-known HTTP status codes.
A collection of factory functions for Fetch API Response
types with pre-filled status and status-text headers for well-known HTTP status codes.
It is meant to be used in Service Workers and/or Cloudflare Workers.
import { ok } from '@worker-tools/response-creators'
self.addEventListener('fetch', event => event.respondWith(ok()))
For the most part, factory functions can be used like regular Response
constructors, e.g.
event.respondWith(
ok('Your custom body init', { headers: { 'Content-Type': 'text/plain' } })
)
However, some provide a slightly different interface for enhanced usability. E.g. redirects (300, 301, 302, 303, 307, 308):
event.respondWith(
seeOther(`/your-redirect-url`)
)
(This will set the Location
header to /your-redirect-url
).
NOTE: When using JSON response bodies, consider combining it with worker-tools/json-fetch
like so:
event.respondWith(
new JSONResponse({ error: '...' }, badRequest())
)
Due to signature of the Response
constructor, the opposite order (badRequest(new JSONResponse({ error: '...' }))
) does not work!
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 Tools also includes a number of polyfills that help bridge the gap between Worker Runtimes:
Location
polyfill for Cloudflare Workers.fetch
events using Deno’s native HTTP server.Fore more visit workers.tools.
FAQs
A collection of factory functions for Fetch API Response types with pre-filled status and status-text headers for well-known HTTP status codes.
We found that @worker-tools/response-creators demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.