Tuesday, March 19, 2024

Aptana Studio 3 Review: Features & Details

With the emergence of HTML5, there is a strong need for HTML5-aware IDEs. The California-based company Aptana has stepped up to the plate with version 3 of Aptana Studio. Touted as a “professional, open source development tool for the open web”, I thought that it was high time that I put it through its paces and give it the once-over. I am happy to say that I was delighted with what I found.

Version Choices

The Aptana Studio IDE is based on Eclipse, but with a slant towards JavaScript development, which Aptana has long been known for. It comes in both a Stand-alone Version and as an Eclipse Plug-in. The stand-alone version is quite a large file (130.7 MB for Windows), so I would recommend getting the plugin if you already have Eclipse 3.5 or higher. Both editions are available for the Mac OS X, Windows (x86 – x64 Compatible), and Linux operating systems.

Third Party Products

Aptana Studio relies on a few third party tools, including:

  • Sun/Oracle Java 1.5.x or later is required on Mac and Linux. However, the Windows installer includes a compatible version of Java.
  • Git is required because it is used internally to update your scripting environment. On Windows, Aptana recommends PortableGit from msysgit because it has a bash shell for executing commands. But don’t bother hunting it down; if you don’t have msysgit installed, Studio 3 will offer to install it for its own internal use.
  • If you intend to do Ruby on Rails development, you will also need to set up your Ruby and Rails development environment, as the installer won’t set that up for you.

Features of Aptana Studio 3

HTML5 Savvy Intellisense

Intellisense is one of the main reasons to use an IDE for web development. When editing HTML files, Code Assist not only displays a list of matching tags, but it also includes graphical information about the level of support for each element in the major web browsers:

Image 1

The parser is also able to identify in a treelist all of the CSS, JavaScript, HTML, and PHP/Ruby objects/tags. The links and definitions of those objects are fully searchable.

Integrated Debugger

In this area, Aptana Studio shows some bias towards Ruby & Rails. There is a fully integrated Ruby & Rails debugger that has all of the features that you would expect from a professional grade product, including the ability to set breakpoints, inspect variables, control execution, etc…Surprisingly weaker is JavaScript debugging. The Aptana site says that it’s coming soon. Let’s hope so! In the mean time, might I suggest using the Firefox Firebug extension.

Running Aptana Studio

When you first launch Aptana Studio, you will see a blank workspace, as shown below. Unlike other IDEs, the interface comes with a black background by default which is supposed to be easier on the eye than the standard white.

Image 2

There are several ways to create a new project. You can do one of the following to trigger the project creation wizard:

  • Go to File => New => Project…
  • Click on the new project icon located on the main toolbar (see below)
  • If you have no current open projects, there will also be a “create project” icon in the App Explorer.

Image 3

Aptana Studio supports the following project types: PHP, Ruby, Rails, .Net, Titanium, PyDev(Python, Jython, Iron Python), static/dynamic Web sites, and more…

Depending on the type of project decide to create, you will need to fill in the appropriate fields and hit finish to create the project. The project will then show up in the App Explorer.

If you are typing the name of an object (e.g. “document”), when you type the period (“.”) to call either a method or access a property for that object, Content Assist pops up a small window displaying the available methods and properties for that object (shown below). You can also type ctrl + space to access Content Assist at any time. You can also use Content Assist with your own objects and functions. For example, when you call a function that you have already coded, Content Assist can help you with parameters and return types. To use Content Assist with your own code, you will need to document it using /** */ tags.

Deployment Mechanisms

It used to be that FTPing your files to the Web server was all that was needed to deploy your website. Not so with modern web apps. For those, it helps to have a good deployment mechanism in place. Here too, Aptana Studio can be of service. It supports Capistrano, Engine Yard, Heroku, as well as the more traditional FTP, SFTP, and FTPS Deployment.

Code Tracking

Of course, any IDE worth its salt has to have some kind of version control. Aptana Studio has built-in support for no less than five version control products, including Git, Subversion (my personal fave), Mercurial, CVS, and Perforce.

At the file level, the Quick Diff feature highlights the line numbers for all lines of code that have had changes made since your last save, which helps to track your changes as you code. Right-click in the gray margin at the left of the editor and select “Show Quick Diff” from the context menu to toggle the Quick Diff feature on and off. The General tree in the Preferences window offers some options for the code change highlighting feature as well.

Conclusion

While there’s no doubt that Aptana Studio 3 displays some weakness in a couple of areas, such as in JavaScript debugging and PHP development, it also has a lot of strengths. I would even go so far as to say that it could be considered to be one of the front runners of the open source IDE arena. It’s especially well suited for Eclipse users who want to leverage their existing knowledge without having to shell out a lot of money for something like IBM Rational Software Architect.

Robert Gravelle
Robert Gravelle
Rob Gravelle resides in Ottawa, Canada, and has been an IT guru for over 20 years. In that time, Rob has built systems for intelligence-related organizations such as Canada Border Services and various commercial businesses. In his spare time, Rob has become an accomplished music artist with several CDs and digital releases to his credit.

Get the Free Newsletter!

Subscribe to Developer Insider for top news, trends & analysis

Popular Articles

Featured