Initial commit: Bun web server with middleware, routing, and comprehensive documentation

This commit is contained in:
2025-12-11 23:56:40 +09:00
commit faea4e4d1f
25 changed files with 3404 additions and 0 deletions

15
package.json Normal file
View File

@ -0,0 +1,15 @@
{
"name": "bun-web-server",
"version": "1.0.0",
"description": "Web server built with Bun",
"main": "src/index.ts",
"type": "module",
"scripts": {
"dev": "bun run --watch src/index.ts",
"start": "bun run src/index.ts",
"build": "bun build src/index.ts --outdir dist"
},
"keywords": ["bun", "server", "web"],
"author": "",
"license": "MIT"
}