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 && <4.7), cmdargs (>=0.10 && <0.11), wai-app-static (>=2.0 && <3), warp (>=2.0 && <2.1) [details]
License MIT
Author rejuvyesh
Maintainer mail@rejuvyesh.com
Category Network
Home page http://github.com/rejuvyesh/hserv
Uploaded by rejuvyesh at 2014-01-07T15:14:34Z
Distributions NixOS:0.1.0.3
Reverse Dependencies 1 direct, 0 indirect [details]
Executables hserv
Downloads 2473 total (15 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
Successful builds reported [all 7 reports]

Readme for hserv-0.1.0.2

[back to package description]

hserv

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