in reply to build web interface without a web server

This isn't necessarily what you're looking for but the POD of IO::All (which is one of my personal favorites for quick and dirty IO:: stuff) has a really slick one-line web server which supports rudimentary CGI:
perl -MIO::All -e 'io(":8080")->fork->accept->(sub { $_[0] < io(-x $1 +? "./$1 |" : $1) if /^GET \/(.*) / })'
(BTW, I take no credit for this... see the explanation here)

Replies are listed 'Best First'.
Re^2: build web interface without a web server
by boat73 (Scribe) on Jan 21, 2005 at 17:32 UTC
    Thanks to all. I will eamine all suggestions. I like the perl only stuff.