Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@miniflare/http-server

Package Overview
Dependencies
Maintainers
4
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@miniflare/http-server - npm Package Compare versions

Comparing version 2.6.0 to 2.7.0

3

dist/src/index.js

@@ -480,3 +480,2 @@ var __create = Object.create;

log?.warn(`Unknown encoding "${coding}", sending plain response...`);
delete headers["content-encoding"];
encoders.length = 0;

@@ -656,3 +655,3 @@ break;

const protocol = httpsEnabled ? "https" : "http";
const accessibleHosts = host ? [host] : getAccessibleHosts(true);
const accessibleHosts = host && host !== "0.0.0.0" ? [host] : getAccessibleHosts(true);
log.info(`Listening on ${host ?? ""}:${port}`);

@@ -659,0 +658,0 @@ for (const accessibleHost of accessibleHosts) {

{
"name": "@miniflare/http-server",
"version": "2.6.0",
"version": "2.7.0",
"description": "HTTP server module for Miniflare: a fun, full-featured, fully-local simulator for Cloudflare Workers",

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

"engines": {
"node": ">=16.7"
"node": ">=16.13"
},

@@ -39,8 +39,8 @@ "publishConfig": {

"dependencies": {
"@miniflare/core": "2.6.0",
"@miniflare/shared": "2.6.0",
"@miniflare/web-sockets": "2.6.0",
"@miniflare/core": "2.7.0",
"@miniflare/shared": "2.7.0",
"@miniflare/web-sockets": "2.7.0",
"kleur": "^4.1.4",
"selfsigned": "^2.0.0",
"undici": "5.5.1",
"undici": "5.9.1",
"ws": "^8.2.2",

@@ -50,5 +50,5 @@ "youch": "^2.2.2"

"devDependencies": {
"@miniflare/shared-test": "2.6.0",
"@miniflare/shared-test": "2.7.0",
"@types/node-forge": "^0.10.4"
}
}

Sorry, the diff of this file is not supported yet

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