IntelliJ IDEA 2019.3 Help

Pug (Jade) Template Engine

IntelliJ IDEA integrates with the Pug (Jade) template engine that transforms Pug (Jade) files into HTML.

Pug files are marked with the Pug icon; Jade files are marked with the Jade icon.

Before you start

Installing Pug

  • In the embedded Terminal (Alt+F12), type:

    npm install -g pug-cli

Compiling Pug

To compile your code on the fly, you need to configure the template engine as a IntelliJ IDEA File Watcher.

Create a Pug/Jade file watcher

  1. Open the Settings/Preferences dialog Ctrl+Alt+S and go to Tools | File Watchers.

  2. Click the Add button or press Alt+Insert and choose the Pug/Jade predefined template from the list. Your code will be translated into JavaScript and supplied with generated source maps.

  3. In the Program field, specify the path to the pug or jade package. Type the path manually or click the Browse button and choose the file location in the dialog that opens.

  4. Proceed as described in File Watchers.

When you open a file, IntelliJ IDEA checks whether an applicable file watcher is available in the current project. If such file watcher is configured but disabled, IntelliJ IDEA displays a popup that informs you about the configured file watcher and suggests to enable it.

If an applicable file watcher is configured and enabled in the current project, IntelliJ IDEA starts it automatically upon the event specified in the New Watcher dialog.

  • If the Auto-save edited files to trigger the watcher checkbox is selected, the File Watcher is invoked as soon as any changes are made to the source code.

  • If the Auto-save edited files to trigger the watcher checkbox is cleared, the File Watcher is started upon save (File | Save All, Ctrl+S) or when you move focus from IntelliJ IDEA (upon frame deactivation).

Configuring syntax highlighting

You can configure Pug/Jade-aware syntax highlighting according to your preferences and habits.

  1. In the Settings/Preferences dialog Ctrl+Alt+S, go to Editor | Color Scheme | Pug/Jade.

  2. Select the color scheme, accept the highlighting settings inherited from defaults or customize them as described in Configuring Colors and Fonts.

Last modified: 26 April 2020