hserv: Simple http server in haskell.

[ mit, network, program ] [ Propose Tags ]

Simple http server in haskell, similar to as provided by `python -m SimpleHTTPServer`.


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.1.0.1, 0.1.0.2, 0.1.0.3
Dependencies base (>=4.6 && <=5), cmdargs (>=0.10), wai-app-static (>=2.0), warp (>=2.0) [details]
License MIT
Author rejuvyesh
Maintainer rejuvyesh <mail@rejuvyesh.com>
Category Network
Home page http://github.com/rejuvyesh/hserv
Source repo head: git clone https://github.com/rejuvyesh/hserv
Uploaded by rejuvyesh at 2014-04-07T09:15:19Z
Distributions NixOS:0.1.0.3
Reverse Dependencies 1 direct, 0 indirect [details]
Executables hserv
Downloads 2468 total (14 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
Last success reported on 2016-12-15 [all 8 reports]

Readme for hserv-0.1.0.3

[back to package description]

hserv

Hackage Build Status

Simple haskell server (just like python -m http.server).

hserv [OPTIONS]

Common flags:
-p --port[=INT]  Port on which server should run
-? --help        Display help message
-V --version     Print version information

For example to use port 6556, run:

hserv -p6556