From 997cf540f6e42f9613f9b950adf1262fe2b8586c Mon Sep 17 00:00:00 2001 From: Dave Cross Date: Fri, 1 Jan 2016 16:49:49 +0000 Subject: [PATCH] Added README --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..c55208d --- /dev/null +++ b/README.md @@ -0,0 +1,14 @@ +Easy PSGI Programming +===================== + +Some really simple sample PSGI programs that are written simply to +demonstrate that you don't need use web frameworks to move your code +from CGI to PSGI. + +The sample programs are based on the code in +[a series of three articles on CGI programming](http://perlhacks.com/articles/cgi-programming/) +that I wrote for Linux Format back in 2000. + +**Note:** I'm not saying that I think this is the best way of writing +web programs in Perl. I am saying that this is a reasonably easy way to +port old CGI programs to PSGI.