HTML: Preprocessor Pug
Theory: Installation
As with the SASS preprocessor, the Pug uses an interpreter, a program, or a script that translates a Pug template into HTML.
This course will use the npm package pug-cli, allowing you to compile files from the command line. It is similar to using the sass package from the SASS: Fundamentals course.
Use the pug-cli package to install the Pug interpreter:
You can install the package in a specific directory or globally with the -g flag during installation. If you want to know the package version you installed, type pug --version.
At the time of writing, the following version is in use:
The first template
Let us look at how the interpreter works. To do this, create an index.pug file with the following contents:
Even if this is the first time you see Pug markup, you will have no trouble figuring out what we do here. It lowers the entry threshold for people familiar with HTML syntax.
Now it is time to compile this code. To do that, we enter the command pug and pass the path to the file you want to compile.
If we enter no other options, the file will be compiled automatically under the same name and in the same directory:
Pug translates the code into minimized HTML by default. It removes the spaces between tags, tabs, and line feeds. It is handy in development but not in learning. During studying, you better see the complete and unadulterated result. Luckily, we have the --pretty option for this. If you are sure about your code, remove it.
In development, compiled files are often kept separate from source files. It is convenient because it means we develop in one directory, and the files that result from compilation, which will go to the server, are in another directory. In pug-cli, we use the -o for this purpose, giving the path where we send the compiled file:
When developing, compiling files after each save is very convenient. We use the -w flag for this. After that, the process will constantly monitor the file and compile whenever there are changes. Altogether, your learning projects may look like the following:
If these flags are too complex initially, you can use their full names:
A complete command list can be displayed using the pug --help command.
Additional assignments
- Install the npm package
pug-cli - Compile the file from the example
- Try using different tags