JetBrains Rider 2021.2 Help

Pug (Jade)

JetBrains Rider 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

  • Make sure the Pug (ex-Jade) and File Watchers required plugins are enabled on the Settings/Preferences | Plugins page, tab Installed, see Managing plugins for details.

Installing Pug

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

    npm install -g pug-cli

Compiling Pug

To compile your code automatically, you need to configure a Pug/Jade File Watcher which will track changes to your files and run the template engine.

When you open a file, JetBrains Rider checks whether an applicable File Watcher is available in the current project. If such File Watcher is configured but disabled, JetBrains Rider 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, JetBrains Rider starts the compiler 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 JetBrains Rider (upon frame deactivation).

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.

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 the defaults or customize them as described in Colors and fonts of IDE text.

Last modified: 20 July 2021