in reply to Building a webpage with Perl
For instance, a simple Dancer program as such could get you started (from Dancer::Tutorial):
Install Dancer if you haven't done so already:# myapp.pl use Dancer; get '/' => sub { return 'Hello World!'; }; start;
Then just fire off the built-in server from the command line:$ cpan Dancer
And take your browser to http://localhost:3000.$ perl myapp.pl
For a full blown application with templates and configuration files, use the Dancer app starter:
$ dancer -a myapp
|
|---|