Skip to content

Instantly share code, notes, and snippets.

@bigpresh
Created February 18, 2010 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bigpresh/307676 to your computer and use it in GitHub Desktop.
Save bigpresh/307676 to your computer and use it in GitHub Desktop.
Dancer is a Perl framework for building web applications with minimal effort. It
started as a port of Ruby's Sinatra project, but has grown on its own path. A
Dancer app can run as a standalone Web server or from any webserver using PSGI,
and lets the user write an application with very few lines of code. It's
powerful and flexible enough to knock up a simple website or web service very
quickly, and can scale to much larger projects.
Building a Web application with Dancer is as easy as loading the library and
defining route handlers. Dancer provides an elegant syntax for defining route
handlers, can render views with a variety of template engines, supports static
file serving, session support, and many more features.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment