New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@cfworker/web

Package Overview
Dependencies
Maintainers
1
Versions
60
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cfworker/web - npm Package Compare versions

Comparing version 1.9.0 to 1.10.0

2

dist/application.js

@@ -29,3 +29,3 @@ import statuses from 'statuses';

catch (err) {
console.error(err);
console.error(err?.stack ?? err);
if (err instanceof HttpError) {

@@ -32,0 +32,0 @@ return err.toResponse();

{
"name": "@cfworker/web",
"version": "1.9.0",
"version": "1.10.0",
"description": "Web framework for Cloudflare Workers and service workers, inspired by Koa and fastify",

@@ -63,3 +63,3 @@ "keywords": [

},
"gitHead": "d333ff940566a7acc384ab791d8b73bed2a9a211"
"gitHead": "a05bcc6295252bf391d548977f28a8975da47317"
}

@@ -36,3 +36,3 @@ import statuses from 'statuses';

} catch (err) {
console.error(err);
console.error((err as any)?.stack ?? err);

@@ -44,3 +44,3 @@ if (err instanceof HttpError) {

const status = 500;
const statusText = statuses[500]!;
const statusText = statuses[500];
const headers = { 'content-type': 'text/plain' };

@@ -47,0 +47,0 @@ return new Response(statusText, { status, statusText, headers });

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc