🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

srvx

Package Overview
Dependencies
Maintainers
1
Versions
77
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

srvx - npm Package Compare versions

Comparing version
0.11.14
to
0.11.15
+8
-1
dist/adapters/node.mjs

@@ -522,4 +522,11 @@ import { n as lazyInherit, t as FastURL } from "../_chunks/_url.mjs";

}
bodyReader() {
try {
return this.#request.body?.getReader();
} catch (error) {
this.emit("error", error);
}
}
_read(_size) {
const reader = this.#reqReader ??= this.#request.body?.getReader();
const reader = this.#reqReader ??= this.bodyReader();
if (!reader) {

@@ -526,0 +533,0 @@ this.push(null);

+1
-1

@@ -187,3 +187,3 @@ import { a as green, c as url, i as gray, l as yellow, n as bold, o as magenta, r as cyan, s as red } from "./_chunks/_utils.mjs";

name: "srvx",
version: "0.11.14",
version: "0.11.15",
description: "Universal Server."

@@ -190,0 +190,0 @@ };

{
"name": "srvx",
"version": "0.11.14",
"version": "0.11.15",
"description": "Universal Server.",

@@ -5,0 +5,0 @@ "homepage": "https://srvx.h3.dev",