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

@whatwg-node/server

Package Overview
Dependencies
Maintainers
1
Versions
802
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@whatwg-node/server - npm Package Compare versions

Comparing version 0.9.70 to 0.9.71-alpha-20250228110200-2dbbefddefadfee93983d529f84e6e5ccf5b4cf5

5

cjs/utils.js

@@ -148,2 +148,7 @@ "use strict";

default:
if (globalThis.Bun) {
// workaround for https://github.com/oven-sh/bun/issues/12368
// Proxy.get doesn't seem to get `receiver` correctly
return Reflect.get(target, prop);
}
return Reflect.get(target, prop, receiver);

@@ -150,0 +155,0 @@ }

@@ -128,2 +128,7 @@ import { createDeferredPromise, fakePromise, isPromise, } from '@whatwg-node/promise-helpers';

default:
if (globalThis.Bun) {
// workaround for https://github.com/oven-sh/bun/issues/12368
// Proxy.get doesn't seem to get `receiver` correctly
return Reflect.get(target, prop);
}
return Reflect.get(target, prop, receiver);

@@ -130,0 +135,0 @@ }

4

package.json
{
"name": "@whatwg-node/server",
"version": "0.9.70",
"version": "0.9.71-alpha-20250228110200-2dbbefddefadfee93983d529f84e6e5ccf5b4cf5",
"description": "Fetch API compliant HTTP Server adapter",

@@ -9,3 +9,3 @@ "sideEffects": false,

"@whatwg-node/fetch": "^0.10.5",
"@whatwg-node/promise-helpers": "^1.0.0",
"@whatwg-node/promise-helpers": "1.2.1-alpha-20250228110200-2dbbefddefadfee93983d529f84e6e5ccf5b4cf5",
"tslib": "^2.6.3"

@@ -12,0 +12,0 @@ },

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