UNPKG

@nodeboot/http-server

Version:

Node-Boot http server package. It provides a simple way to create HTTP servers using Node.js, with support for routing, middleware, and request handling.

57 lines 1.6 kB
{ "name": "@nodeboot/http-server", "version": "1.1.6", "description": "Node-Boot http server package. It provides a simple way to create HTTP servers using Node.js, with support for routing, middleware, and request handling.", "author": "Manuel Santos <ney.br.santos@gmail.com>", "license": "MIT", "keywords": [ "nodeboot", "http", "native" ], "repository": { "type": "git", "url": "https://github.com/nodejs-boot/node-boot.git" }, "publishConfig": { "access": "public" }, "main": "dist/index.js", "types": "dist/index.d.ts", "dependencies": { "find-my-way": "^9.3.0", "cookie": "^1.0.2", "@nodeboot/core": "1.13.2", "@nodeboot/context": "1.11.1", "@nodeboot/error": "1.2.0", "@nodeboot/engine": "1.4.1" }, "devDependencies": { "@types/cookie": "^0.4.1", "@types/jest": "^29.5.11", "jest": "^29.7.0", "ts-jest": "^29.1.1", "@types/node": "^24.0.1" }, "files": [ "dist", "package.json", "README.md", "config.d.ts" ], "scripts": { "build": "tsc -p tsconfig.build.json", "clean:build": "rimraf ./dist", "dev": "nodemon", "lint": "eslint . --ext .js,.ts", "lint:fix": "pnpm lint --fix", "format": "prettier --check .", "format:fix": "prettier --write .", "test": "jest --passWithNoTests", "typecheck": "tsc", "build:patch": "pnpm build && pnpm version patch", "build:minor": "pnpm build && pnpm version minor", "build:major": "pnpm build && pnpm version major", "release": "pnpm publish --access public --no-git-checks" } }