Pug (Jade) Template Engine
IntelliJ IDEA integrates with the Pug (Jade) template engine.
Before you start
- Install Node.js.
- Make sure the NodeJS and Pug (ex-Jade) plugins are installed and enabled. The plugins are not bundled with IntelliJ IDEA, but they can be installed from the JetBrains plugin repository as described in Installing, Updating and Uninstalling Repository Plugins and Enabling and Disabling Plugins. Once enabled, the plugins are available at the IDE level, that is, you can use them in all your IntelliJ IDEA projects.
Also, if you need a file watcher, make sure that the File Watchers plugin is installed and enabled. The plugin is not bundled with IntelliJ IDEA, but it can be installed from the JetBrains plugin repository as described in Installing, Updating and Uninstalling Repository Plugins and Enabling and Disabling Plugins.
Changes to the UI
The Pug (ex-Jade) plugin introduces the following changes to the IntelliJ IDEA UI:
- The Jade file item is added to the menu.
- The Pug files are marked with the icon
; the Jade files are marked with the icon
.
- Coding assistance is provided in the Pug (Jade)-specific and HTML context:
- Code formatting
- Syntax highlighting
- Code completion
- Color schemes
Using Pug(Jade) templates in a Node.js application
At runtime, the Pug (Jade) files fill be transformed into HTML pages.
- Create a project from scratch, or around existing sources, or based on a NodeExpress template.
- Create a Pug (Jade) file. Follow these steps:
- In the Project Tool Window, select the directory in which you want to create a new file. To do that, for example, choose .
- On the context menu, choose Jade file and specify the file name in the dialog box that opens.
- Create a File Watcher to transform files with the extension
.jade
or.pug
into.html
pages:- Click the Add Watcher link in the upper right-hand corner of the editor.
- In the New Watcher Dialog, accept the default predefined settings.
Note that if the executable is in the PATH, then you should not specify it explicitly. Depending on the file extension (
.jade
or.pug
), the corresponding executable is invoked.
- As you edit a
.pug
/.jade
file, IntelliJ IDEA invokes the file watcher which creates an.html
file with the name of the processed.pug
/.jade
file and stores the generatedhtml
code in it.
See Using File Watchers for details.