"sstark" <> wrote in news:1124748515.933748.10230
@g14g2000cwa.googlegroups.com:
> Hi, I'd like to run a perl script (using CGI.pm) from a web browser but
> without using a web server. Is there any way to do that?
You'd have to build a "mini web server" into the program itself, so that
when you start it (you'd have to do *that* using you're OS's program-start
mechanism), it starts listening on a local port, which you in turn point
your browser at. As Xho pointed out, you could use HTTP:

aemon to build
it, though it would still involve a bit of work. IIRC,
Net::HTTP::Server::Simple does a bit of the work for you.