An HTTP server written in Bash.
Launch a "Hello World" HTTP server:
#!/usr/bin/env import -s bash
import http@0.0.1
http_server echo hello world
Run this code$ curl localhost:3000
hello world
HTTP server implementation is based off of
avleen/bashttpd
.