Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am currently in the process of designing a database-driven website to manage various personal data and some business data. This is primarily a personal app, however it will be used by a few clients to retrieve and update information. Is Perl still a viable language to code a website with the newer .NET options, Python, etc. available?

share|improve this question

26 Answers

This is an old question, but I thought I should update the readers. I am happy to report that in my opinion Perl is more viable for web development than ever! Along with old friends Catalyst and (recently revamped) Mason, there are some great new entries Mojolicious (or visit mojolicio.us) and Dancer. I'm sure there are others too.

Perhaps the biggest improvement is PSGI/Plack (or visit http://plackperl.org/).

PSGI is an interface between Perl web applications and web servers, and Plack is a Perl module and toolkit that contains PSGI middleware, helpers and adapters to web servers.

With these improvements have come more cloud hosting platforms: for a couple examples read more here.

Perl itself is experiencing a renaissance of sorts. Between Moose object framework (and lighter clones like Mouse) and the ideals of the Modern Perl movement (readability while using modern best practices), Perl seems to be growing and its users are excited and motivated.

Personally I have been enjoying Mojolicious. I like its built-in servers and templating engine. I also like that you can make a Mojolicious::Lite application in a single file! That said I really haven't played with Dancer or other frameworks, so if you are coming back to Perl or new to Perl, I would encourage you to take a look at those too.

Edit, from SawyerX (author of Dancer): Dancer can also be a single file. In fact, the default in exporting Dancer is to provide an internal webserver for single file applications. This is compatible with the original purpose of Dancer, which is porting Ruby’s Sinatra (which does the same thing). If you’ll check structured Dancer code, you’ll see it’s export as “use Dancer ‘:syntax’” which means “hey, I just want the syntax, not the internal webserver”.

In closing Perl-for-web has come a long way since CGI.pm. If you've been away for a while, its worth another look.

share|improve this answer
8  
+1 Thanks for the update. – Bill Ruppert Jan 12 '12 at 3:55

Perl is certainly a useful web development language. Check out the Mason Perl templating system and Catalyst which provides an MVC web framework.

share|improve this answer
24  
And Template Toolkit! – Keeth Sep 25 '08 at 19:05
10  
And Mojolicious! And Dancer, Plack, PSGI, plackup, ... – mfontani Dec 7 '10 at 14:26

Perl is (and will always be, in my opinion) a viable language for web development. It's a language that once you learn, you'll be able to use anywhere.

For instance, I've used it for Web Development, System Administration, and personal projects.

There is a wealth of material available, as well as the Perl Monks website. All Perl tools are 'free' (as in speech and as in beer). You don't have to buy an Integrated Development Environment to get anything done (ASP.NET)), and you don't have to worry about a specific package being loaded, since Perl is readily available to most (if not all) webhosts.

The downside is that it's easy to create insecure websites, and the onus is on the developer to secure his website -- Perl isn't 'easy' to learn by any means, but the rewards are well worth the effort.

If money is no object, I'd suggest ASP.NET MVC, since you could utilize the power of Microsoft's Visual Studio, which is free.

All in all, it doesn't matter what language you use, but what you're comfortable with. I started with Perl, and migrated to C# and ASP.NET, and later to ASP.NET MVC, but I still use Perl on a (near) daily basis because it makes doing certain things very easy.

Career wise: LAMP (Linux, Apache, MySql, Perl/PHP) is a good move -- it's a niche market, but if you know PHP/Perl you'll be set. PHP is more on the upswing than Perl is, however.

So, to answer your question: Either devote your time to learning ASP.NET, C#, and SQL Server 2005; or devote your time to LAMP (PHP or Perl), if you're going to make a career out of it.

share|improve this answer
1  
so is learning mason, catalyst and template toolkit not a good idea then? – melaos Dec 18 '08 at 9:48
1  
You must walk before you run. Learning the toolkits mean nothing if you don't know Perl. – George Stocker Dec 18 '08 at 19:57
2  
> The downside is that it's easy to create insecure websites, and the onus is on the developer to secure his website You probably didn't mean it, but when I read this for the first time, I thought you are implying that "it's easy to create insecure websites" using Perl. Creating insecure websites is possible in any language. Using/learning good development practices is necessary to avoid such mistakes. – Prakash K May 6 '10 at 16:02
It is shockingly easy to create an insecure website with Perl. That isn't a fault of Perl; but it is something to be aware of. – George Stocker May 6 '10 at 16:48

Yes, Perl is still a very viable web language. I know a number of Perl startups that are doing quite well, thank you very much. And as a job market, while Perl is behind PHP, there are more Perl jobs than Ruby and Python combined. See Comparative Language job trend graphs for proof.

A standard Perl stack would be to use Catalyst for an MVC framework, with Rose::DB::Object or DBIx::Class for an ORM solution, and any of a number of templating solutions, with Template Toolkit being one of the most popular.

share|improve this answer

Sure!

Perl is well suited to rapid, incremental development. It supports CGI and REST quite easily; in my experience SOAP is a bit more difficult but not overwhelmingly so.

Make sure you use -w and strict with great diligence though! Also, in my experience, it really helps to develop and test one small feature at a time.

share|improve this answer
1  
-w/strict takes a performance penalty. You can remove this when code has been promoted to production. – spoulson Sep 19 '08 at 20:35
14  
Don't believe spoulson's rumormongering. There is no performance penalty to warnings unless you hit them, and none to strict at all. – user11318 Sep 19 '08 at 21:07
4  
I prefer use warnings to -w – Brad Gilbert Dec 24 '08 at 16:46
3  
More importantly, we have now (since 2009) PSGI which will make a web application work in many environments : CGI, FastCGI, mod_perl... Write Once, Deploy Anywhere. – dolmen May 5 '11 at 15:11

It's no less viable than it was in the past—it's a solid and well-supported language with a healthy library and a healthy community using it. If you're comfortable with the language, or interested in becoming so, it's absolutely a reasonable option.

share|improve this answer
1  
It just has alot more competition now. – Matthew Watson Sep 20 '08 at 4:05
4  
Sure, but competition isn't what undercuts the viability of a language. Abandonment and stagnation, those or the problems you worry about. Competition is as much as anything a helpful stimulus to the languages, and language communities, vying for attention. – Josh Millard Sep 20 '08 at 11:25

Well, assuming that perl can still create tags and text to send to a client request, then yeah it is. If you want a state-of-the-art application platform, there's Catalyst and Mason

share|improve this answer

Catalyst is a rails-like framework for Perl that is fairly popular now. If you decide to use Perl, it would be worth looking at.

share|improve this answer
11  
Catalyst is more flexible and scalable than Rails. – singingfish Sep 7 '10 at 21:48

Any (reasonable) language you're confident with is viable to code a website with.

Perl has all the libraries you could dream of, and a mature community. No reason not to go with it.

share|improve this answer
Many viable languages are not really viable for web development. I'd never advise using C, C++, or FORTRAN, for instance. – reinierpost Oct 1 '09 at 17:15
Hence the second part of the anwser. Thanks for trying to read the whole of it. – JB. Oct 1 '09 at 21:46

Perl is a great language for doing this kind of thing.

A lot of people are telling you to use a module for this project, like Catalyst. You should definitely look into those things.

When people start doing HTML in Perl, they typically follow this pattern:

  1. lots of ugly print() statements
  2. lots of ugly <<HERE docs
  3. Use of a templating module (I like HTML::Template myself)
  4. Use of a framework.

You don't necessarily need to go to 4 on this project, but it would be great for your development as a programmer to skip 1 and 2.

share|improve this answer

It's already been said that Perl offers everything you need for web development -- and I find it handy for one-off utilities as well, so I like having it in my toolkit. What I would recommend is that whatever language you choose, you invest the time to become truly proficient. You can write great code, or crap, in any language out there; and you'll be more productive, and spend much less time "hacking" (in the sense of trying stuff to see if it works) if you take the time to really "get" the language. Find some code written by experienced perl programmers, study it, question what you don't understand, and repeat.

share|improve this answer

Perl has been processing web applications since the begining through CGI. the community is still strong with tons of libraries. check out CPAN

share|improve this answer

As a language, I prefer Perl over PHP, but IMHO Perl hasn't been the strongest in web. Your architectural choices are basically three:

  1. CGI: easy to get started with the CGI module, but it's slow and rendering code can get ugly.
  2. mod_perl: Close equivalent to ASP.NET's ashx handlers. You'll get the best performance this way.
  3. Classic ASP/IIS: ActivePerl installs Perl as usable script language in ASP via page header: <%@Language="PerlScript"%>. Accessing the Request/Response objects can get weird and inconsistent due to Microsoft's implementation that VBScript hides from you.

There are plenty of frameworks you can learn, but they're usually an overlay over #1 or #2. If you want to go this route, take a look at Catalyst and Maypole.

share|improve this answer
3  
A 4th option would be to use FastCGI. Speed-wise it sould be comparable to running under mod_perl, without being tied to a specific web werver (Apache). – 8jean Sep 19 '08 at 20:48
2  
True. I knew I forgot one from the list. In fact, mod_perl has a FastCGI-like configuration (Apache::Registry) that allows CGI apps to run and stay resident for the next request. It's a great compromise of CGI and mod_perl features. – spoulson Sep 20 '08 at 15:48
2  
Apache::Registry is not like FastCGI. FastCGI is basically the same as a mod_perl-enabled Apache without any hooks into Apache itself. – Dave Rolsky Nov 25 '08 at 15:59
1  
Yah, FastCGI + a rich framework like Catalyst ought to be considered the gold standard for Perl web development in 2009. – djsadinoff Feb 2 '09 at 15:20
1  
Meta overload. Comment saying a 4 year old answer is outdated about a question of whether Perl is outdated. – spoulson Oct 2 '12 at 14:49
show 4 more comments

The combination DBIx::Class, Moose and Catalyst provides an ideal development framework for producing high-performance web applications. Not only is it fun but it works great as well!

share|improve this answer

I did a lot of my web coding with CGI::Application. check it or any other framework that was previously mentioned, and you're set.

share|improve this answer

For something mostly personal, the question isn't is Perl viable (it is) but whether you enjoy working with or want to learn it.

When I start learning new languages, I try them out on personal projects first. Perl is used fairly extensively at work, but my boss would probably balk if I suggested using Lua in addition. So the sort of project you are suggesting would be an ideal place to try something new.

share|improve this answer

I used Catalyst in my internship experience, and I think that it has nothing to envy to the current web frameworks out there. The Catalyst community looks quite fertile and about the object orientation, I think that there's a Moose switch on a branch of the Catalyst development.

share|improve this answer
1  
Catalyst is now written with Moose. – Brad Gilbert Aug 5 '09 at 21:02

I have been using Perl for web applications an for website building for years now, PHP came later, and to be frank with you, Perl still has more to offer in terms of security, addons, speed and resources. Here is one example WebAPP open source Perl CMS scroll down and see the number of cached latest posts (over 200), try showing more then the latest 5-10 latest posts in joomla, wordpress or drupal.. and you will end up either by exhausting your server resources to death or having your webhost calling you..

Jimbo

share|improve this answer

I do love perl,really. But please mind this: Deployability. Only few of shared hosting out there that allow you to install catalyst(and its deps's),perl modules.
If you have the option (whatever that is) to implement full-blown perl web stack, go on.It's viable, no doubt.Otherwise, maybe you could use php because of its ubiquitous presence virtually in all unix/linux hosting , more of canned php script/app/cms/ offered in web-hosting compare to perl, and the possibly quicker setup than perl.

share|improve this answer
Excellent answer. Perl has always had this problem and PHP never did (my guess is mod_perl was just too hard to install). (Generally the voting on the answers here doesn't appear to reflect the quality of the answers, and this one is rated too low.) – reinierpost Jan 22 '10 at 8:58
There are other Perl web frameworks, not only Catalyst. – Alexandr Ciornii Jan 12 '12 at 15:02
In 2009 the landscape may have been such. But nowadays modern cloud providers are becoming stack-agnostic. Heroku, dotCloud, Stackato, and many other providers are deployable with modern Perl frameworks such as Dancer, Mojolicious, and even Catalyst. – DavidO Sep 6 '12 at 6:21

Here is a nice article about the BBC's use of Perl including their custom MVC framework: BBC Article

share|improve this answer

I made a huge Web-application with Apache::ASP. Strange, that not many people use it. It allows you to write embedded code not in PHP but in pure perl. Extraordinary comfortable!

share|improve this answer

There's still a ton of legacy code that runs Perl which will keep it in use for a long time, but for new projects, it's not really the leader. I've been writing Perl every day at my job for 10 years now, but I would seriously consider using something else on a new project.

If you do decide to use Perl, I would recommend you pay attention to some of the more modern utilities and frameworks that bring Perl closer to the more hip languages. For example, take a look at Catalyst for a web framework. There's also a lot of resources that have cropped up recently for test-driven development in Perl that bring it in line with current practices.

share|improve this answer
There are newer frameworks in the Perl ecosystem since you posted your answer: Dancer, Mojolicious... – dolmen May 5 '11 at 15:20

I don't see why not. I mean as long as you follow standards and write efficient code.... But we all always make sure to do that right?!

share|improve this answer

Yes. Perl is being used for modern web development in many well known websites and it has all the features and tools needed. You need to consider who else is going to work with your code though. Perl is not so easy to master and it's flexibility in terms of how you do things demands fairly disciplined developers compared to other languages.

share|improve this answer

I wrote Python for three years and switched to a Perl Web Dev job earlier this year. Perl is still viable, in fact its own ecosystem and toolset is richer than ever. Perl still has active development (The community is propped up by companies who've written to much Perl to see it fail) and will be around for a long time. For those with existing Perl codebases, there isn't a lot to worry about. In answer to your question, it is viable.

However I wouldn't recommend it. Perl is an old language, that's maintained backwards compatibility and this has left it as a language which does not easily express intent, comes last in every single performance comparison, is poorly documented and makes a simple program more expensive (in terms of programmer's cost) than it ever needs to be. It is painful to work with. You can transfer your knowledge to a cleaner, faster, simpler, less dense programming language like Python or Ruby and you'd be in a much happier place.

I think my hard and fast rule is, if the code base isn't already Perl, don't write new projects in it. Learn something clean and modern.

share|improve this answer
4  
May I ask, what is poorly documented? I learned nearly the entire language from perldoc. Also, I don't see how the backward compat is a drawback. Given the modern Perl movement towards readability, and the flexibility in the language (allowing totally new syntax like that of MooseX::Declare), you get a remarkably stable and compatible language with new modern syntax too! Sorry but Python3 and Ruby whatever, good luck keeping it working! – Joel Berger Jan 13 '12 at 2:40
1  
Sorry, I didn't really mean to sound snarky there. But back-compat is must be a plus if it doesn't then limit future development. Perl's importing mechanisms and the feature pragma allow it to grow without breaking old code. Lots of really old Perl code runs just fine on modern versions. Anyway, I really am not trolling, and am interested in your responses. – Joel Berger Jan 13 '12 at 2:47
1  
if you are going to bash perl, how about explaining your issues, instead of just making sweeping statements of fact ? – Tobi Oetiker Jan 13 '12 at 17:36
3  
@TobiOetiker, if he gets to bash perl can I zsh python?! wow that was a bad one :-) – Joel Berger Jan 13 '12 at 19:53
1  
I too have to take issue with your documentation comment, the documentation in the Ruby and Rails world is rather thin and incomplete to the point that I spend a lot of time tracing through source code to figure things out; the documentation in the Perl world is pretty fantastic. I also have to take issue with your comment on performance; my experience is that Perl wipes the floor with Ruby in terms of speed, I love Ruby but fast isn't a word I'd use to describe it. I can't comment on Python so I'll leave that be. – mu is too short Jan 17 '12 at 2:40
show 7 more comments

Personally, I believe PHP is a better language for web development. My main reasons are the better OO support, as well as PHP itself being used as a template engine.

Perl is nice, and I use it quite often for cron jobs and system administration. But, in my opinion, the OO syntax is clunky at best, and you cannot use it as a template engine out of the box.

Bottom line in my opinion: learn both, and decide which tasks you feel more comfortable doing in either language. There is no right or wrong answer.

share|improve this answer
11  
If you don't like Perl's way of handling OO (personally, I do like it), check out Moose (find it on CPAN). PHP "being used as a template engine" is not a good thing IMO; it actively encourages mixing code and presentation, which leads to maintenance pains. – David Precious Jan 8 '09 at 21:01
The syntax for Moose objects is horrible, so is it's lazy, per variable construction system. – Philluminati Jan 12 '12 at 14:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.