What's a good development environment for Perl?

前端 未结 8 1037
眼角桃花
眼角桃花 2020-12-30 06:35

I develop applications using PHP or Java and will study Perl for the first time.

For PHP and Java, there are integrated development environments such as Eclipse, and

8条回答
  •  情深已故
    2020-12-30 07:01

    From perlfaq3: Is there an IDE or Windows Perl Editor?, where it looks much nicer.

    If the Padre people want their stuff in here, just add the right bits. The source lives in my perlfaq github repo. You can fork it, edit the file right in GitHub, and send me a pull request.


    Is there an IDE or Windows Perl Editor?

    Perl programs are just plain text, so any editor will do.

    If you're on Unix, you already have an IDE--Unix itself. The Unix philosophy is the philosophy of several small tools that each do one thing and do it well. It's like a carpenter's toolbox.

    If you want an IDE, check the following (in alphabetical order, not order of preference):

    Eclipse

        The Eclipse Perl Integration Project integrates Perl
        editing/debugging with Eclipse.
    

    Enginsite

        Perl Editor by EngInSite is a complete integrated development
        environment (IDE) for creating, testing, and  debugging  Perl
        scripts; the tool runs on Windows 9x/NT/2000/XP or later.
    

    Komodo

        ActiveState's cross-platform (as of October 2004, that's Windows,
        Linux, and Solaris), multi-language IDE has Perl support, including
        a regular expression debugger and remote debugging.
    

    Open Perl IDE

        Open Perl IDE is an integrated development environment for writing
        and debugging Perl scripts with ActiveState's ActivePerl
        distribution under Windows 95/98/NT/2000.
    

    OptiPerl

        OptiPerl is a Windows IDE with simulated CGI environment, including
        debugger and syntax highlighting editor.
    

    PerlBuilder

        PerlBuidler is an integrated development environment for Windows
        that supports Perl development.
    

    visiPerl+

        From Help Consulting, for Windows.
    

    Visual Perl

        Visual Perl is a Visual Studio.NET plug-in from ActiveState.
    

    Zeus

        Zeus for Window is another Win32 multi-language editor/IDE that
        comes with support for Perl
    

    For editors: if you're on Unix you probably have vi or a vi clone already, and possibly an Emacs too, so you may not need to download anything. In any Emacs, the cperl-mode (M-x cperl-mode) gives you perhaps the best available Perl editing mode in any editor.

    If you are using Windows, you can use any editor that lets you work with plain text, such as NotePad or WordPad. Word processors, such as Microsoft Word or WordPerfect, typically do not work since they insert all sorts of behind-the-scenes information, although some allow you to save files as "Text Only". You can also download text editors designed specifically for programming, such as Textpad and UltraEdit, among others.

    If you are using Mac OS, the same concerns apply. MacPerl (for Classic environments) comes with a simple editor. Popular external editors are BBEdit or Alpha. Mac OS X users can use Unix editors as well.

    GNU Emacs

    MicroEMACS

    XEmacs

    Jed

    or a vi clone such as

    Elvis FTP, WWW

    Vile

    Vim

    For vi lovers in general, Windows or elsewhere: vi

    nvi (available from CPAN in src/misc/) is yet another vi clone, unfortunately not available for Windows, but in Unix platforms you might be interested in trying it out, firstly because strictly speaking it is not a vi clone, it is the real vi, or the new incarnation of it, and secondly because you can embed Perl inside it to use Perl as the scripting language. nvi is not alone in this, though: at least also vim and vile offer an embedded Perl.

    The following are Win32 multilanguage editor/IDESs that support Perl:

    Codewright

    MultiEdit

    SlickEdit

    There is also a toyedit Text widget based editor written in Perl that is distributed with the Tk module on CPAN. The ptkdb is a Perl/tk based debugger that acts as a development environment of sorts. Perl Composer is an IDE for Perl/Tk GUI creation.

    In addition to an editor/IDE you might be interested in a more powerful shell environment for Win32. Your options include

    Bash from the Cygwin package

    Ksh from the MKS Toolkit, or the Bourne shell of the U/WIN environment

    Tcsh, see also Using csh & tcsh

    Zsh

    MKS and U/WIN are commercial (U/WIN is free for educational and research purposes), Cygwin is covered by the GNU Public License (but that shouldn't matter for Perl use). The Cygwin, MKS, and U/WIN all contain (in addition to the shells) a comprehensive set of standard UNIX toolkit utilities.

    If you're transferring text files between Unix and Windows using FTP be sure to transfer them in ASCII mode so the ends of lines are appropriately converted.

    On Mac OS the MacPerl Application comes with a simple 32k text editor that behaves like a rudimentary IDE. In contrast to the MacPerl Application the MPW Perl tool can make use o Shell f the MPW itself as an editor (with no 32k limit).

    Affrus is a full Perl development environment with full debugger support.

    Alpha is an editor, written and extensible in Tcl, that nonetheless has built in support for several popular markup and programming languages including Perl and HTML.

    BBEdit and BBEdit Lite are text editors for Mac OS that have a Perl sensitivity mode.

    Pepper and Pe are programming language sensitive text editors for Mac OS X and BeOS respectively.

提交回复
热议问题