UNPKG

0http

Version:

Zero friction HTTP request router. The need for speed!

60 lines 1.43 kB
{ "name": "0http", "version": "5.1.0", "description": "Zero friction HTTP request router. The need for speed!", "main": "index.js", "scripts": { "format": "npx standard --fix", "test": "cross-env PORT=3000 NODE_ENV=testing npx nyc --check-coverage --lines 85 node ./node_modules/mocha/bin/mocha tests/*.test.js", "bench": "node --expose-gc bench.js" }, "repository": { "type": "git", "url": "git+https://github.com/BackendStack21/0http.git" }, "keywords": [ "http", "server", "router", "rest" ], "engines": { "node": ">=22.x" }, "author": "Rolando Santamaria Maso <kyberneees@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/BackendStack21/0http/issues" }, "homepage": "https://github.com/BackendStack21/0http#readme", "devDependencies": { "0http": "^4.4.0", "@types/node": "^24.13.2", "body-parser": "^2.3.0", "chai": "^6.0.1", "cross-env": "^10.0.0", "mitata": "^1.0.34", "mocha": "^11.7.6", "nyc": "^18.0.0", "supertest": "^7.1.4" }, "files": [ "LICENSE", "README.md", "index.js", "index.d.ts", "common.d.ts", "lib/" ], "dependencies": { "lru-cache": "^11.5.1", "regexparam": "^3.0.0", "trouter": "^4.0.0" }, "overrides": { "diff": "^9.0.0", "js-yaml": "^4.2.0", "serialize-javascript": "^7.0.6" }, "types": "./index.d.ts" }