Perl on NetBeans IDE Beta 2
Join the DZone community and get the full member experience.
Join For Free" perl on netbeans " is intended for perl programmers who want the intuitiveness of a great editor with the ease of being able to execute the program without having to do it through a command interpreter. also, it has the capability to inspect the austerity of your perl programs, and format the same in accordance to the best practices and conventions.
features of beta 2 release-
perl editor
- perl file support
- perl module support
- syntax highlighting
- brace matching
- export code as html
-
perl project
- create project with new sources
- create project with existing sources
- open existing project
- add new file to project
- add existing file to project
-
code execution
- code execution
- code execution with command line arguments
- syntax checking
- source code formatting (using perl::tidy)
- source code analysis (using perl::critic)
- integrated perl-doc
-
configuration using the options panel
- templates
- general options
- perl tidy
- perl critic
- integrated versioning system (svn/git/hg)
this ide requires the following to be installed on your system for the ide to work properly:
- active-perl v5.16 (or perl::critic and perl-doc installed with your existing perl installation)
- java 6
- windows xp/7/8
- linux
- mac os
the installation of "perl on netbeans" can be summarized in the following steps:
- download: http://code.google.com/p/perl-on-netbeans
- extracting and run the binary.
once the project is downloaded and extracted, you need to go to the folder perlonnetbeans/bin and use the perl_on_netbeans executable. the start-up screen is as shown below:
the ide currently has the following features.
editor
perl file support. any perl file can be opened in the editor and all available features would be available.
project
a perl project can be defined as a collection of perl files that can be logically grouped together. the basic operations on a perl project are outlined below.
create new project. to create a new project, click on the “new project” icon on the toolbar or select “file -> new project”. the following screen is displayed:
select “perl” in the category and “perl project” under “projects”. the subsequent screen will ask for the location where you want the project to be saved and will create a folder by that name with the project sources. the ide will also open the project for further activities.
create project with existing sources. assuming a scenario where you have a few files that you want to create a project with and then use them. here you can create a project with existing files using the newly available project type. please note that all the selected files are imported to the project location and all modification would be done to the copy inside the project location.
open project. to open an already existing project, select the “open project” icon in the toolbar or go to “file -> open project”. this opens up the project selection dialog box and enable you to select am existing perl project to be opened. perl project have been assigned a different icon to distinguish them from other kinds of projects, as shown below.
this opens-up the subsequent window for selecting the file type and locations. select the “perl” category and then select “sampleperlfile.pl” as the file type. the subsequent windows will ask for the location where the files should be saved. this should be ideally left on the ide to decide as it selects the code folder automatically.
add existing file. to add an existing file to a project, select the project node and then click on the “add existing file” icon as shown below. this will present you with another dialog window where you can select the files. once the files are selected, they would be copied over to your project and be available under the project for all purposes.
check files for syntax errors
this feature enables you to check the syntax of the file that is currently selected in the editor. to execute any specific file that is currently selected in the editor, click on the "syntax check" button on the toolbar as shown below. this checking happens based on the version of the perl compiler that is currently installed on your system.
Opinions expressed by DZone contributors are their own.
Comments