Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 338 Bytes

Readme.md

File metadata and controls

26 lines (16 loc) · 338 Bytes

http

An HTTP server written in Bash.

Example

Launch a "Hello World" HTTP server:

#!/usr/bin/env import -s bash
import [email protected]

http_server echo hello world
$ curl localhost:3000
hello world

Credits

HTTP server implementation is based off of avleen/bashttpd.