https://github.com/ryleeharrison/simple-fast-dynamic-http-server
Dynamic HTTP server that automatically handles URL to local resource path and content-type headers
https://github.com/ryleeharrison/simple-fast-dynamic-http-server
dynamic dynamic-handlers dynamic-http dynamic-http-server http node-http node-http-server
Last synced: about 1 month ago
JSON representation
Dynamic HTTP server that automatically handles URL to local resource path and content-type headers
- Host: GitHub
- URL: https://github.com/ryleeharrison/simple-fast-dynamic-http-server
- Owner: RyLeeHarrison
- License: mit
- Created: 2018-06-30T05:16:23.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-07-01T03:08:22.000Z (almost 7 years ago)
- Last Synced: 2025-01-31T12:17:26.697Z (3 months ago)
- Topics: dynamic, dynamic-handlers, dynamic-http, dynamic-http-server, http, node-http, node-http-server
- Language: HTML
- Size: 6.84 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Simple Fast Dynamic HTTP Server
Dynamic HTTP server that automatically handles URL to local resource path and content-type headers
## Current Features
- Dynamically composes a response that automatically handles:
- Request URL local directory path. (ex. "http://exampe.com/fag.html" -> "./fag.html")
- Polymorphic Content-Type header.
- reduces resource extension. (ex. "http://exampe.com/style.css" -> "text/css")## Quick start
Clone and run
```sh
git clone https://github.com/RyleeHarrison/simple-fast-dynamic-http-server
cd simple-fast-dynamic-http-server
yarn start # or npm run start
```