You can build Drupal websites with just a few tools, such as a code editor, browser and dev environment. While it is not necessary to use additional tools, tools do make your life easier and can save you a tonne of time and improve the quality of your work. So let’s take a look at the essential tools to use to develop with Drupal.

Drush

Drush is one of the most popular, if not the most popular, Drupal development tool out there. Drush is the command line and scripting interface for Drupal. You can use it to speed up installing, developing and maintaining Drupal sites. It takes some getting used to, and there are a lot of commands to remember but, once you do, it is a real time saver. Rather than clicking through the admin interface to achieve something, you simply type in one command. When building Drupal sites and developing custom modules and themes, this can really help.

Get Drush

The developers behind Drush recently moved its code repository from drupal.org to Github, where you can download or clone it. There are a few ways to install it, the drupal.org installation documentation is the best place to start.

Devel

Devel is probably the single most important tool for module development, behind Drush. Devel has sub-modules, such as Devel Generate and Theme Developer, built in for extra power and functionality.

Devel does a lot of useful things, such as:

  • Inspect PHP arrays and objects with Devel tools like dpm(). This alone is vital when developing modules.
  • Print database queries for each page load, making it easier for you to identity slow queries
  • Generate dummy content, taxonomy terms and users with Devel Generate
  • Theme Developer displays important information about themes which can be a real time saver for theme development
  • Information on node access for nodes (are nodes protected or visible to the public)

Some of these are provided by Devel itself, and some by one of the sub-modules that comes with the Devel package.

Devel should only be used for development and never left enabled on a live website. It is best to not even deploy it to the live site.

Devel uses Krumo when inspecting arrays and objects with Devel. Krumo is an alternative to print_r and var_dump and displays human readable structured information about a PHP variable. Once installed, when you run Devel’s dpm() function, Krumo will handle the output in the browser and make it easier for you to see the particular variable and drill into.

UPDATE: It has been reported in the comments (thanks oluadeyemo) that Theme Developer is currently not working.

Get Devel

You can get from the Devel project page. It is currently available for both Drupal 6 and Drupal 7.

Examples module

The Examples module is a useful collection of example code for common code implementations. It comes with sub-modules such as ajax_example, email_example, node_example and batch_example. If you are stuck on how to write code to achieve a particular task, the Examples module might just provide the inspiration that you need.

Get Examples

You can get it from the Examples project page. It is currently available for Drupal 6, Drupal 7 and Drupal 8.

Coder

The Coder module ensures that your code adheres to the Drupal coding standards.

Coder includes two submodules: Coder Review and Coder Upgrade. Coder Review allows you to verify that a module meets the Drupal coding standards and lets you know if you need to change something if the Drupal API changes. Coder Upgrade helps you upgrade your modules or themes to a new version of Drupal. It will actually rewrite parts of your code for you.

Coder now includes Drupal Coder Sniffer (was at https://drupal.org/project/drupalcs). Coder Sniffer uses PEAR’s PHP Codesniffer and applies it to the Drupal coding standard. When you run it against a piece of code, it will tell you which parts of the code do not adhere to the standard (if any). You can run it in the admin interface, or command line.

Get Coder

You can get it from the Coder project page. It is currently available for both Drupal 6 and Drupal 7.

Security Review

The Security Review runs tests against your site to identify security problems and provides a report of these problems. It doesn’t magically fix security issues for you - after it identifies the potential issues, you need to go through and remedy them - but it does save time.

Get Security Review

You can get it from the Security Review project page. It is currently available for both Drupal 6 and Drupal 7.

Features

Turn configuration into a module so that you can deploy it and source control it. This is essential up to and including Drupal 7 because without it, a lot of the changes required to meet a certain use-case will be stored in the database only. You should not really make those changes on the live site but if you make them on your local version, how do you deploy them to live? Features makes this possible. This is incredibly helpful even if you are a single developer working on a single site. It is vital if you are working with more than one developer.

Get Features

You can get it from the Features project page. It is currently available for both Drupal 6 and Drupal 7.

Diff

If you are using Features, you need to use the Diff module as well. Your features might become overridden, which means that what is in the database does not match what is in code. When this happens, you can use the Diff module to see the difference. You can also view changes between two revisions of nodes, modules etc. The diff module will save you a tonne of time.

Get Diff

You can get it from the Diff project page. It is currently available for both Drupal 6 and Drupal 7.

Hacked

See if any contrib modules have been overridden since being downloaded. You can use it with Diff to see the differences, line by line. This is particularly useful if you are taking over a Drupal site from another developer, or working with a team where you don’t know what everyone is doing. It is bad practice to hack core or contrib modules but you don’t always know if something has changed and there isn’t always a patch file to help you. (Note: if you must change a contrib or core module, always create a patch file so you can reply it after applying updates).

Get Hacked

You can get it from the Hacked project page. It is currently available for both Drupal 6 and Drupal 7.

Backup and Migrate

Backup and Migrate makes it very easy to backup your database. You can back up with one click in the admin interface, or my running one Drush command (drush bam-backup). You can also configure it to send your backups to services such as Dropbox or Amazon S3.

Get Backup and Migrate

You can get it from the Backup and Migrate project page. It is currently available for Drupal 5, Drupal 6 and Drupal 7.

API Reference site and Drupal Contrib API site

The default Drupal API documentation can be found here - api.drupal.org. This is a brilliant resource for core functions and hooks.

Documentation for popular Drupal contributed moulded can be found on DrupalContrib. It is to contrib modules what api.drupal.org is to core.

Repository Viewer

Sometimes the easiest way to understand how a module works is to read the code. But it is a pain to have to download it first. You don’t have to. On the modules’ project page, there is the Repository Viewer link, which allows you to view the code in full, right in the browser.

Masquerade

Often when developing Drupal, you need to test something as a different user. In fact, you should get used to not testing as the admin user! You need to ensure the permissions for various users and roles work. The Masquerade module allows you to easily switch to a different user. It is also very useful when a particular user reports a bug and you need to replicate exactly what they are doing.

Get Masquerade

You can get it from the Masquerade project page. It is currently available for Drupal 6 and Drupal 7.

Drupal for Firebug

This allows you to see useful information about nodes, users, SQL queries and execute PHP right from Firebug. If you don’t want to use Firefox, there is also Drupal for Chrome.

Get Drupal for Firebug or Drupal for Chrome

You can get the Drupal code from the Drupal for Firebug project page.

If you are using Firefox, you can get the official plugin from the Mozilla, or the latest version from the DrupalForFirebug repository.

If you are using Chrome, you can get the plugin for Drupal for Chrome.

###Administration menu

This is not really a development tool as such, but the admin menu makes navigating around the admin interface a LOT faster. How? Less clicks. It provides a bar across the top of the screen and a hierarchical drop down for each admin link, so you only have to click once to go to a specific admin page. Most of the other Drupal menus force you to click multiple times for deep links.

Get Administration Menu

You can get it from the Administration menu project page. It is currently available for Drupal 6 and Drupal 7.

Production Check, Production Monitor and Performance

The Production Check module gives you the status of essential modules for production sites. It tells you whether or not they are disabled and information about critical errors. It covers caching, aggregation, compression, APC, PHP errors, SEO modules and development modules such as Devel (which should be disabled on a production site).

You can use the Production Monitor module to add any number of sites to your local site and get Product Check on them. This makes it very easy to check all of your production sites from one single place.

It even has integration with the Performance module, so you can monitor page generation times, memory usage etc for your production websites.

Get Production Check, Production Monitor

You can get it from the Production check & Production monitor project page. It is currently available for Drupal 6 and Drupal 7.

Get Performance

You can get it from the Performance project page. It is currently available for Drupal 6 and Drupal 7.

Drupal Project Lookup

Drupal Project Lookup is a Chrome extension which saves time when searching for a project page on drupal.org. To use it, you type pml followed by the project you are looking for. For example, to go to the Views project page, type “pml views”. This will take you to https://drupal.org/project/views

Get Drupal Project Lookup

You can Drupal Project Lookup from the Chrome web store.

Drupal API Search is a Chrome extension that saves time when searching for API documentation on api.drupal.org. To use it, type dr followed by function name you are looking for. It will autocomplete as you type. For example, to go to the API documentation for hook_form_alter, type “dr hook_form_alter”. This will take you to https://api.drupal.org/api/drupal/developer%21hooks%21core.php/function/hook_form_alter/6.

It defaults to Drupal 6 pages on api.drupal.org. You can change this by going to your chrome extensions page (chrome://extensions/), and clicking options for Drupal API Search. There you can change the Drupal version to 7 or 8.

You can get Drupal API Search from the Chrome web store.

Dreditor

Dreditor improves the experience of reviewing patches and commenting on issues on drupal.org. Its features include:

  • Adds a patch reviewer button to patches in issues on drupal.org. After you click on the review button, you will get a nice patch file with syntax highlighting.
  • Provides Auto-completion when adding comments on Drupal.org.
  • Makes it easier to attach screenshots to issues
  • Provides a template for commit messages

Get Dreditor

You can get Dreditor from its website.

Non-Drupal specific tools

There is a bunch of other tools that you may need to make your life easier developing Drupal modules and themes.

  • Code editor or IDE. I use PhpStorm for a kick ass IDE or Sublime Text for a great code editor.
  • MySQL GUI You can use the command line to interact with MySQL, but you might find it easier to use a GUI. PhpMyAdmin is the standard that you will find in a lot of places, including most hosting providers. For Mac, Sequel Pro is fast, slick and easy to use.
  • Snippet manager There is lots of little (and big) bits of code that will be reused and it makes sense to store these in a snippet manager so you can easily reuse them. A lot of IDEs and code editors provide this functionality. I use a 3rd part tool because I often change IDEs, but want to retain the same snippet repo. I use Snippets (Mac only).
  • Xdebug Xdebug is a debugging and profiling tool for Drupal. It allows you to step through your code, line by line, as a request is being returned. If you have a bug and you don’t know which bit of code is causing it, Xdebug can be a real timesaver. Even if you are not trying to identify a bug, this is a very useful exercise just to see all of the code that is run when Drupal is dealing with a request for a particular URL.
  • CSS preprocesser Organise your CSS code and make it much easier to developer and maintaining with a CSS preprocesser The two most popular are Sass and Less. If you use Sass, then I recommend you use Compass as well.

Other tools worth mentioning

The following tools are not essential, especially if you are just starting with Drupal development. I have listed them here for completeness and you may find yourself needing to use them at some stage.

  • Vagrant for creating a virtual development environment and Puppet or Chef for configuration management.
  • VMWare - run a LAMP stack on Mac or Windows, as an alternative to Vagrant.
  • XAMPP (cross platform), WampServer(Windows) or MAMP(Mac) for a development environment if you don’t want the hassle of setting one up with Vagrant or VMWare.
  • Aegir is a system that makes it easier to deploy and manage multiple Drupal sites and servers. Aegir automates the process of creating server configuration files, databases and Drupal installation. There are additional AEgir based systems such as Barracuda, Octopus and DevShop.
  • Behat / PHP Unit / Simple Test / Selenium for automated testing
  • Kcachegrind / jMeter / Apache Bench for Performance testing.
  • XHProf Code Profiler for profiling. Profiling is to measure the execution time for function or method calls when an application is dealing with a page request.
  • New Relic to help you identify performance issues so you can create a faster application
  • Deadwood to makes it easier to upgrade a module for a new major version of Drupal. It is now merged into Coder and is called Coder Upgrade, but you still need Deadwood if upgrading from Drupal 5 to 6.
  • Schema for additional functionality not provided by the Schema API

Wrapping up

This is a long list of tools and you will not need to use all of them. Pick and chose what you think you need and over time you can experiment with additional tools to add to your tool belt. Having tools in your tool belt will help you become a more efficient and confident Drupal developer.

Updates

18th Feb 2014

The following tools were added: Production Check, Production Monitor and Performance, Drupal Project Lookup, Drupal API Search, Dreditor, Aegir

Credits

Thanks to Mod Campus for recommending Production Check Thanks to TheodorosPloumis for mentioning AEgir, Drupal API Search, Drupal Project Lookup, Dreditor etc.