Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@forklaunch/hyper-express-fork

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@forklaunch/hyper-express-fork - npm Package Compare versions

Comparing version
6.17.30
to
6.17.31
+60
-59
package.json
{
"name": "@forklaunch/hyper-express-fork",
"version": "6.17.30",
"description": "High performance Node.js webserver with a simple-to-use API powered by uWebsockets.js under the hood.",
"main": "index.js",
"types": "./types/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/kartikk221/hyper-express.git"
},
"keywords": [
"uws",
"websockets",
"uwebsocketsjs",
"express",
"expressjs",
"fast",
"http-server",
"https-server",
"http",
"https",
"sse",
"events",
"streaming",
"stream",
"upload",
"file",
"multipart",
"ws",
"websocket",
"performance",
"router"
],
"author": "Kartik Kumar",
"license": "MIT",
"bugs": {
"url": "https://github.com/kartikk221/hyper-express/issues"
},
"homepage": "https://github.com/kartikk221/hyper-express#readme",
"dependencies": {
"busboy": "^1.6.0",
"cookie": "^1.0.1",
"cookie-signature": "^1.2.1",
"mime-types": "^2.1.35",
"negotiator": "^1.0.0",
"range-parser": "^1.2.1",
"type-is": "^1.6.18",
"typed-emitter": "^2.1.0",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.51.0"
},
"devDependencies": {
"@types/busboy": "^1.5.4",
"@types/express": "^5.0.0",
"@types/node": "^22.7.5",
"typescript": "^5.6.3"
},
"scripts": {
"test": "node tests/index.js"
}
}
"name": "@forklaunch/hyper-express-fork",
"version": "6.17.31",
"description": "High performance Node.js webserver with a simple-to-use API powered by uWebsockets.js under the hood.",
"main": "index.js",
"types": "./types/index.d.ts",
"scripts": {
"test": "node tests/index.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/kartikk221/hyper-express.git"
},
"keywords": [
"uws",
"websockets",
"uwebsocketsjs",
"express",
"expressjs",
"fast",
"http-server",
"https-server",
"http",
"https",
"sse",
"events",
"streaming",
"stream",
"upload",
"file",
"multipart",
"ws",
"websocket",
"performance",
"router"
],
"author": "Kartik Kumar",
"license": "MIT",
"bugs": {
"url": "https://github.com/kartikk221/hyper-express/issues"
},
"homepage": "https://github.com/kartikk221/hyper-express#readme",
"dependencies": {
"busboy": "^1.6.0",
"cookie": "^1.0.1",
"cookie-signature": "^1.2.1",
"mime-types": "^2.1.35",
"negotiator": "^1.0.0",
"qs": "^6.14.0",
"range-parser": "^1.2.1",
"type-is": "^1.6.18",
"typed-emitter": "^2.1.0",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.51.0"
},
"devDependencies": {
"@types/busboy": "^1.5.4",
"@types/express": "^5.0.0",
"@types/node": "^22.7.5",
"typescript": "^5.6.3"
}
}

@@ -7,2 +7,3 @@ import { Readable } from 'stream';

import { MultipartHandler } from '../plugins/MultipartField';
import { ParsedQs } from 'qs';

@@ -15,6 +16,2 @@ type default_value = any;

interface ParsedQs {
[key: string]: undefined | string | string[] | ParsedQs | ParsedQs[];
}
type DefaultRequestLocals = {

@@ -21,0 +18,0 @@ [key: string]: any;