
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@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!
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.
The npm package @worker-tools/response-creators receives a total of 32 weekly downloads. As such, @worker-tools/response-creators popularity was classified as not popular.
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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.