Popularity
1.4
Declining
Activity
0.0
Stable
2
2
0

Monthly Downloads: 16
Programming language: Haskell
License: GNU General Public License v3.0 only
Tags: Web    
Latest version: v3.0

quickwebapp alternatives and similar packages

Based on the "Web" category.
Alternatively, view quickwebapp alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of quickwebapp or a related project?

Add another 'Web' Package

README

quickwebapp

A quick-and-dirty api generator, for any function a -> Either String b.

It is inspired from the interact function from the Prelude.

interactWeb (reverse :: String -> String)

This creates a server listening on port 8080. You can change the port with the PORT env variable.

You can query it via a browser at http://localhost:8080 or by using curl/httpie

httpie

http :8080 input="<your input string>"

curl

curl localhost:8080 -d input="<your input string>"