Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@webdiscus/pug-loader
Advanced tools
Pug loader renders Pug files into HTML or compiles them into a template function.
Pug loader renders Pug files into HTML or compiles them into a template function.
This Pug loader resolves paths and aliases for extends
include
require()
.
💡Pug loader supports an indent in Vue template.
MyComponent.vue
<template lang='pug'> h1 Hello Pug! p Use the '@webdiscus/pug-loader' </template>
See how to use Pug with Vue and source of example.
Warning
Since
v2.8.0
the support of thehtml-webpack-plugin
is DEPRECATED, because Pug has its own smarty and cleverpug-plugin
.
Note
Instead of
html-webpack-plugin
recommended to use thepug-plugin
.
Pug Plugin enable to use Pug files in webpack entry and generates HTML files that contain the hashed output JS and CSS filenames whose source files are specified in the Pug template.💡 Pug plugin highlights:
- The Pug file is the entry point for all scripts and styles.
- Source scripts and styles should be specified directly in Pug.
- All JS and CSS files will be extracted from their sources specified in Pug.
- No longer need to define scripts and styles in the webpack entry.
- No longer need to import styles in JavaScript to inject them into HTML via additional plugins such as
html-webpack-plugin
andmini-css-extract-plugin
.Please see usage examples and the demo app Hello World.
HTML string
template function
for usage in JavaScriptCommonJS
and ESM
syntaxresolve.alias
tsconfig.json
compilerOptions.paths
,
requires tsconfig-paths-webpack-pluginsrcset
of img
tag:escape
:code
:highlight
:markdown
with highlighting of code blocksChoose your way:
pug-plugin
.
It is a very easy intuitive way.pug-plugin
For details and examples please see the pug-plugin site.
Install the pug-plugin
:
npm install pug-plugin --save-dev
Note: The
pug-plugin
already contains the pug-loader, not need to install an additional Pug loader.
Warning
The pug-plugin enable to use script and style source files directly in Pug, so easy:
link(href=require('./styles.scss') rel='stylesheet') script(src=require('./main.js') defer='defer')
Generated HTML contains hashed CSS and JS output filenames:
<link href="/assets/css/styles.05e4dd86.css" rel="stylesheet"> <script src="/assets/js/main.f4b855d8.js"></script>
- Don't define styles and JS files in entry. You can use
require()
for source files of JS and SCSS in Pug.- Don't import styles in JS. Use
require()
for style files in Pug.- Don't use
html-webpack-plugin
to render Pug files in HTML. The Pug plugin processes files from webpack entry.- Don't use
mini-css-extract-plugin
to extract CSS from styles. The Pug plugin extract CSS from styles required in Pug.
Change your webpack.config.js according to the following minimal configuration:
const path = require('path');
const PugPlugin = require('pug-plugin');
module.exports = {
output: {
path: path.join(__dirname, 'dist/'),
},
entry: {
// The Pug file is the entry-point for all scripts and styles.
// Source scripts and styles must be specified directly in Pug.
// Do not need to define JS and SCSS in the webpack entry.
index: './src/views/index.pug', // output dist/index.html
about: './src/views/about/index.pug' // output dist/about.html
// ...
},
plugins: [
// enable processing of Pug files defined in webpack entry
new PugPlugin({
js: {
// output filename of extracted JS file from source script defined in Pug
filename: 'assets/js/[name].[contenthash:8].js',
},
css: {
// output filename of extracted CSS file from source style defined in Pug
filename: 'assets/css/[name].[contenthash:8].css',
},
})
],
module: {
rules: [
{
test: /\.pug$/,
loader: PugPlugin.loader, // PugPlugin already contain the pug-loader
},
{
test: /\.(css|sass|scss)$/,
use: ['css-loader', 'sass-loader']
},
],
},
};
Warning
Since
v2.8.0
the support ofhtml-webpack-plugin
is DEPRECATED. Use thepug-plugin
instead.
Install the pug-loader
only if you use the html-webpack-plugin
.
npm install @webdiscus/pug-loader --save-dev
Change your webpack.config.js according to the following minimal configuration:
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
output: {
path: path.join(__dirname, 'public/'),
publicPath: '/', // must be defined any path, `auto` is not supported yet
},
plugins: [
new HtmlWebpackPlugin({
template: path.join(__dirname, 'src/index.pug'),
filename: 'index.html',
}),
],
module: {
rules: [
{
test: /\.pug$/,
loader: '@webdiscus/pug-loader',
},
],
},
};
A Pug template can be used in JavaScript code as template function with custom data.
Install the pug-loader
.
npm install @webdiscus/pug-loader --save-dev
Change your webpack.config.js according to the following minimal configuration:
const path = require('path');
module.exports = {
output: {
path: path.join(__dirname, 'public/'),
publicPath: '/', // must be defined any path, `auto` is not supported yet
},
entry: {
index: './src/index.js', // load a Pug template in JS
},
module: {
rules: [
{
test: /\.pug$/,
loader: '@webdiscus/pug-loader',
},
],
},
};
Load a Pug template in JavaScript. Optional you can pass any data into generated template function.
./src/index.js
const tmpl = require('template.pug');
const html = tmpl({
myVar: 'value',
});
See original description of options
basedir
Type: string
Default: /
The root directory of all absolute inclusion.
doctype
Type: string
Default: html
Specifies the type of document. See available doctypes.
self
Type: boolean
Default: false
Use the self
as namespace for the local variables in template. It will speed up the compilation, but for access to variable, e.g. myVariable
, you must write self.myVariable
.
globals
Type: Array<string>
Default: []
Add a list of global names to make accessible in templates.
filters
Type: object
Default: undefined
Filters let to use other languages in Pug templates.
You can add your own custom filters to Pug.
See the build-in filters.
plugins
Type: Array<Object>
Default: []
Plugins allow to manipulate Pug tags, template content in compile process.
How it works see in source of pug.
compileDebug
Type: boolean
Default: false
Includes the function source in the compiled template to improve error reporting.
pretty
Type: boolean
Default: false
This option is deprecated by pugjs and always is false
. Don't use it.
method
Type: string
Default: compile
Values:
compile
the Pug template compiles into a template function and in JavaScript can be called with variables to render into HTML at runtime. ?pug-compile
. Can be used if the method is render
. render
the Pug template renders into HTML at compile time and exported as a string.
All required resource will be processed by the webpack and separately included as added strings wrapped to a function. ?pug-render
. Can be used if the method is compile
or is not defined in options. html
the template renders into a pure HTML string at compile time. The method need an addition loader to handles the HTML. html-loader
see usageAsset resources such as
img(src=require('./image.jpeg'))
are handled at compile time by the webpack using asset/resource.
esModule
Type: Boolean
Default: false
Enable / disable ESM syntax in generated JS modules.
Values:
true
The pug-loader
generates JS modules with the ESM syntax. import html from 'template.pug';
. false
defaults. The pug-loader
generates JS modules with the CommonJS modules syntax. const html = require('template.pug')
. false
for compatibility with the JS modules that is generated by the original pug-loader.Note: The option
esModule
is irrelevant for thehtml
method, because it returns a pure HTML string.
💡 For generates smaller and faster template function, it is recommended to use following options:
{
method: 'render',
esModule: true,
}
data
Type: Object
Default: {}
The custom data will be passed in all Pug templates, it can be useful by pass global data.
⚠️ Limitation with the
compile
method.
A string representing the source code of the function is limited by thefunction.toString()
, see examples.
For native work of the function passed via thedata
loader option, use therender
method.
embedFilters
Type: Object
Default: undefined
Enable embedded Pug filters.
To enable a filter, add the following to the pug-loader options:
{
embedFilters: {
<FILTER_NAME> : <FILTER_OPTIONS> | <TRUE>,
}
}
Where <FILTER_NAME>
is the name of a built-in filter, the available filters see below.
The filter can have options <FILTER_OPTIONS>
as an object.
If the filter has no options, use true
as an option to enable the filter.
See the complete information on the pug filter site and in the sources.
watchFiles
Type: Array<RegExp|string>
Default: [ /\.(pug|jade|js.{0,2}|.?js|ts.?|md|txt)$/i ]
This option allows you to configure watching of individual resolved dependencies.
The default value enables watching of Pug, scripts, markdown, etc.
and ignores images, styles to avoid double processing via Webpack and via Pug's ist own compiler.
In some cases, you may want to use one SCSS file for styling
and include another SCSS file with a Pug filter for code syntax highlighting.
The first SCSS file is watched via Webpack, but changes in the second will be ignored.
For example, we want to watch for changes in all source examples such as main.c
, colors.scss
, etc. from the /code-samples/
folder,
to do this, add to the watchFiles
option:
{
watchFiles: [
/\\/code-samples\\/.+$/,
]
}
For watching of a file, add full path, for example:
{
watchFiles: [
path.join(__dirname, './src/config.yml'),
]
}
Note: Default value of
watchFiles
will be extends, not overridden.
compile
methodThis method is used by default.
In JavaScript the required template will be compiled into template function.
In webpack config add to module.rules
:
{
test: /\.pug$/,
loader: '@webdiscus/pug-loader',
options: {
method: 'compile' // default method `compile` can be omitted
}
}
In JavaScript, the result of require() is a template function. Call the template function with some variables to render it to HTML.
const tmpl = require('template.pug');
const html = tmpl({ key: 'value' }); // the HTML string
To render the Pug direct into HTML, use the query parameter ?pug-render
.
// compile into template function, because loader option 'method' defaults is 'compile'
const tmpl = require('template.pug');
const html = tmpl({ key: 'value' });
// render the Pug file into HTML, using the parameter 'pug-render'
const html2 = require('template2.pug?pug-render');
Note: If the query parameter
pug-render
is set, then will be used rendering for this template, independent of the loader optionmethod
. Variables passed in template with methodrender
will be used at compile time.
render
methodThis method will render the Pug into HTML at compile time.
In webpack config add to module.rules
:
{
test: /\.pug$/,
loader: '@webdiscus/pug-loader',
options: {
method: 'render'
}
}
In JavaScript the result of require() is an HTML string.
const html = require('template.pug'); // the HTML string
To generate a template function for passing the data in Pug at realtime, use the query parameter ?pug-compile
.
// render into HTML, because loader option 'method' is 'render'
const html = require('template.pug');
// compile into template function, using the parameter 'pug-compile'
const tmpl2 = require('template2.pug?pug-compile');
const html2 = tmpl2({ ... });
html
methodThis method will render the Pug to pure HTML and should be used with an additional loader to handle HTML.
In webpack config add to module.rules
:
{
test: /\.pug$/,
use: [
{
loader: 'html-loader',
options: {
esModule: false, // allow to use the require() for load a template in JavaScript
},
},
{
loader: '@webdiscus/pug-loader',
options: {
method: 'html',
},
},
],
}
In JavaScript the result of require() is an HTML string:
const html = require('template.pug'); // the HTML string
The goal of built-in filters is to use most useful lightweight filters without installation.
The built-in filters are custom filters that are collected in one place.
These filters can be simply enabled via an option.
See the complete information on the pug filter site and in the sources.
Defaults all built-in filters are disabled. Enable only filters used in your Pug templates.
:escape
The filter replaces reserved HTML characters with their corresponding HTML entities to display these characters as text.
Filter options: none
.
Enable the filter:
{
test: /\.pug$/,
loader: '@webdiscus/pug-loader',
options: {
// enable built-in filters
embedFilters: {
escape: true, // enable the :escape filter
},
},
},
Using the :escape
filter in pug:
pre: code.language-html
:escape
<h1>Header</h1>
Generated HTML:
<pre>
<code class="language-html">
<h1>Header</h1>
</code>
</pre>
Inline syntax:
p.
The #[:escape <html>] element is the root element.<br>
Inside the #[:escape <html>] element there is a #[:escape <body>] element.
Generated HTML:
<p>The <html> element is the root element.<br>
Inside the <html> element there is a <body> element.</p>
For more information and examples, see the :escape site.
:code
The filter wraps a content with the <code>
tag.
Filter options:
className {string}
The class name of the code
tag. For example, the prismjs
use the language-*
as class name in <code>
for styling this tag.Enable the filter:
{
test: /\.pug$/,
loader: '@webdiscus/pug-loader',
options: {
// enable built-in filters
embedFilters: {
// enable the :code filter
code: {
className: 'language-', // class name of `<code>` tag, needed for `prismjs` theme
},
},
},
},
Usage examples:
Pug: #[:code function() { return true }]
Display: function() { return true }
Pug: #[:code:escape <div>]
Display: <div>
Pug: #[:code:highlight(html) <div class="container">content</div>]
Display highlighted code: <div class="container">content</div>
For more information and examples, see the :code site.
:highlight
The filter highlights code syntax.
Filter options:
verbose {boolean}
Enable output process info in console.use {string}
The name of a highlighting npm module. The module must be installed. Currently, is supported the prismjs only.Enable the filter:
{
embedFilters: {
highlight: {
verbose: true,
use: 'prismjs',
},
},
}
Usage example:
pre.language-: code
:highlight(html)
<!-- Comment -->
<h1>Header</h1>
<p>Text</p>
For more information and examples, see the :highlight site.
:markdown
The filter transform markdown to HTML and highlights code syntax.
The :markdown
filter require the markdown-it and prismjs modules:
npm install -D markdown-it prismjs
Enable the filter:
{
test: /.pug$/,
loader: '@webdiscus/pug-loader',
options: {
// enable built-in filters
embedFilters: {
// enable :markdown filter
markdown: {
// enable highlighting in markdown
highlight: {
verbose: true,
use: 'prismjs',
},
},
},
},
},
The highlight
options:
verbose {boolean}
Enable output process info in console. Use it in development mode only. Defaults is false.use {string}
The name of a highlighting npm module. The module must be installed. Currently, is supported the prismjs only.Usage example:
:markdown
_HTML_
```html
<!-- Comment -->
<div class="container">
<p>Paragraph</p>
</div>
```
_JavaScript_
```js
const arr = [1, 2, 'banana'];
```
Display highlighted code blocks:
HTML
<!-- Comment --> <div class="container"> <p>Paragraph</p> </div>
JavaScript
const arr = [1, 2, 'banana'];
For more information and examples, see the :markdown site.
By default, the Pug file is compiled as template function, into which can be passed an object with template variables.
const tmpl = require('template.pug');
const html = tmpl({
myVar: 'value',
foo: 'bar'
});
But how pass variables in template which is rendered into HTML?
Variables can be passed with query parameters.
const html = require('template.pug?myVar=value&foo=bar');
or as a JSON object:
const html = require('template.pug?' + JSON.stringify({ myVar: 'value', foo: 'bar' }));
Use variables myVar
and foo
in Pug template.
div The value of "myVar": #{myVar}
div The value of "foo": #{foo}
Usage of query parameters is legal and official documented feature of webpack loader.
Pass myData
object via query.
entry: {
about: './src/pages/about.pug?myData=' + JSON.stringify({ title: 'About', options: { uuid: 'abc123' } })
}
Use the object myData
in Pug template.
html
head
title= myData.title
body
div UUID: #{myData.options.uuid}
To pass global data to all Pug templates, add the loader options data
as any object.
module.exports = {
module: {
rules: [
{
test: /\.pug$/,
loader: '@webdiscus/pug-loader',
options: {
data: {
htmlLang: 'en-EN',
getKeywords: () => {
const keywords = ['webpack', 'pug', 'loader'];
return keywords.join(',');
}
}
}
},
],
},
};
Use the custom data and function in pug.
html(lang=htmlLang)
head
meta(name="keywords" content=getKeywords())
body
Warning
Since
v2.8.0
the support ofhtml-webpack-plugin
is DEPRECATED. Use thepug-plugin
instead.
The user data can be passed into Pug template with two ways:
module.exports = {
plugins: [
new HtmlWebpackPlugin({
title: 'The some page', // avaliable in Pug as `htmlWebpackPlugin.options.title`
template: path.join(__dirname, 'src/index.pug?' + JSON.stringify({ myVar: 'value' })), // avaliable as `myVar`
filename: 'index.html',
}),
],
module: {
rules: [
{
test: /\.pug$/,
loader: '@webdiscus/pug-loader',
},
],
},
};
Use the passed variables htmlWebpackPlugin.options
and myVar
in Pug template:
html
head
title= htmlWebpackPlugin.options.title
body
div= myVar
You can load data directly in pug.
data.json
[
{ "id": 1, "name": "abc" },
{ "id": 2, "name": "xyz" }
]
Require the JSON file in pug.
- var myData = require('./data.json')
each item in myData
div #{item.id} #{item.name}
To handle resources in Pug use the require()
function:
img(src=require('./path/to/images/logo.png'))
For images, add the following rule to the webpack module:
module.exports = {
module: {
rules: [
{
test: /\.(png|jpg|jpeg|svg|ico)/,
type: 'asset/resource',
generator: {
filename: 'assets/images/[name].[hash:8][ext]',
},
},
]
},
};
For fonts, add the following rule to the webpack module:
module.exports = {
module: {
rules: [
{
test: /\.(woff2|woff|ttf|svg|eot)/,
type: 'asset/resource',
generator: {
filename: 'assets/fonts/[name][ext]',
},
},
]
},
};
More information about asset-modules see here.
Example of dynamic interpolation of image src in pug:
- files = ['image1.jpeg', 'image2.jpeg', 'image3.jpeg']
each file in files
img(src=require(`./path/to/${file})`)
Recommended to use the Webpack alias to avoid relative paths in Pug.
For example, use the alias Images
as path to images:
module.exports = {
resolve: {
alias: {
Images: path.join(__dirname, 'src/assets/images/'),
},
}
};
The alias may be used with prefixes ~
or @
.
For example, all following aliases resolves the same path:
img(src=require('Images/logo.png'))
img(src=require('~Images/logo.png'))
img(src=require('@Images/logo.png'))
Using TypeScript
you can define an alias in tsconfig.json
.
But for performance is recommended to use the Webpack alias.
For example, add to tsconfig.json
an alias to the paths
option:
tsconfig.json
{
"compilerOptions": {
"paths": {
"Images/*": ["assets/images/*"]
}
}
}
Warning
The
compile
method can resolve the filename as a string only and the filename can't be interpolated.img(src=require('Images/logo.png')) // It works. - const file = 'logo.png' img(src=require('Images/' + file)) // ERROR: Can't be resolved with 'compile' method.
You can use the Webpack context
for a short path in Pug.
Define in Webpack config the context
as path to sources:
module.exports = {
context: path.resolve(__dirname, 'src'),
};
For example, your images are under the path PROJECT_PATH/src/assets/images/
,
then using the context
you can use the root path (relative by context) anywhere:
img(src=require('/assets/images/logo.png'))
Note
You can use the
basedir
option of pug-loader for same effect:
module.exports = { module: { rules: [ { test: /\.pug$/, loader: '@webdiscus/pug-loader', options: { basedir: path.resolve(__dirname, 'src') }, }, ], }, };
The file in the current- or subdirectory MUST
start with ./
:
img(src=require('./path/to/logo.png'))
The file in the parent directory MUST
start with ../
:
img(src=require('../images/logo.png'))
Warning
Following relative path will be resolved with
render
andhtml
methods, butNOT
withcompile
method:img(src=require('../../images/logo.png'))
This is an interpolation limitation in Webpack.
You can use the filename as a variable.
Usage examples work with all methods:
- const file = 'logo.png'
img(src=require('./images/' + file))
img(src=require(`./images/${file}`))
img(src=require('../images/' + file))
img(src=require('Images/' + file)) // 'Images' is webpack alias
img(src=require(`Images/${file}`)
Warning
Limitation using the
compile
method:
the variableMUST NOT
contain a path, only a filename, because is interpolated at compile time.
For example, the 'compile' method can't resolve following:- var file = '../images/logo.png' img(src=require(file))
Using a variable with render
or html
method, the variable MAY
contain a path, because is resolved at runtime.
Following example work only with render
or html
method:
- const file = '../relative/path/to/logo.png'
img(src=require(file))
img(src=require('Images/' + file))
In current directory, the filename MUST
start with ./
:
- const file = './logo.png'
img(src=require(file))
Install:
npm i --save-dev @webdiscus/pug-loader pug-plugin-ng
In pug-loader can be used the optional pug-plugin-ng to allow unquoted syntax of Angular:
[(bananabox)]="val"
Create the file webpack.config.js
in root directory of angular project:
module.exports = {
module: {
rules: [
{
test: /\.pug$/,
loader: '@webdiscus/pug-loader',
options: {
method: 'render',
doctype: 'html',
plugins: [require('pug-plugin-ng')],
},
},
],
},
};
Bind the file webpack.config.js
in the Angular config angular.json
:
{
// ...
"projects": {
// ...
"architect": {
"build": {
// replace architect.build.builder with this value:
"builder": "@angular-builders/custom-webpack:browser",
// add the options:
"options": {
"aot": true,
"customWebpackConfig": {
"path": "./webpack.config.js" // the path to webpack.config.js
},
// ...
},
// ...
},
"serve": {
// replace architect.serve.builder with this value:
"builder": "@angular-builders/custom-webpack:dev-server",
"options": {
"browserTarget": "<app-name>:build"
},
// ...
},
// ...
},
},
},
In a component file, e.g. ./src/app/app.component.ts
set the templateUrl
with Pug file:
import { Component } from '@angular/core';
// the variable `description` will be passed into Pug template via resource query
const templateVars = '{"description": "Use Pug template with Angular."}';
@Component({
selector: 'app-root',
styleUrls: ['./app.component.css'],
templateUrl: './app.component.pug?' + templateVars,
})
export class AppComponent {
title = 'ng-app';
}
Create a Pug template, e.g. ./src/app/app.component.pug
:
h1 Hello Pug!
p Description: #{description}
See the complete source of the example.
Install:
npm i --save-dev @webdiscus/pug-loader
Change your vue.config.js
according to the following minimal configuration:
const { defineConfig } = require('@vue/cli-service');
// additional pug-loader options,
// e.g. to enable pug filters such as `:highlight`, `:markdown`, etc.
// see https://github.com/webdiscus/pug-loader#options
const pugLoaderOptions = {
};
module.exports = defineConfig({
transpileDependencies: true,
chainWebpack: (config) => {
// clear all existing pug loaders
const pugRule = config.module.rule('pug');
pugRule.uses.clear();
pugRule.oneOfs.clear();
// exclude `pug-loader` from the witchery of the baggy `thread-loader` that is used in production mode
const jsRule = config.module.rule('js');
jsRule.exclude.add(/pug-loader/);
},
configureWebpack: {
module: {
rules: [
{
test: /\.pug$/,
oneOf: [
// allow <template lang="pug"> in Vue components
{
resourceQuery: /^\?vue/u,
loader: '@webdiscus/pug-loader',
options: {
method: 'html', // render Pug into pure HTML string
...pugLoaderOptions,
},
},
// allow import of Pug in JavaScript
{
loader: '@webdiscus/pug-loader',
options: {
method: 'compile', // compile Pug into template function
...pugLoaderOptions,
},
},
],
},
],
},
},
});
For additional information see please the discussion: How to configure the plugin for both Vue and non-Vue usage?
Using Pug in Vue template
<template lang='pug'>
h1 Hello Pug!
p Paragraph
</template>
Note: You can use an indent for Pug code in Vue template.
Using Pug in JavaScript
App.vue
<template>
<div v-html='demo'></div>
</template>
<script>
// import Pug as template function
import demoTmpl from './views/demo.pug';
// define custom data used in Pug template
const locals = { colors: ['red', 'green', 'blue'] };
// pass custom data in Pug template
const demoHtml = demoTmpl(locals);
export default {
name: 'App',
data() {
return {
demo: demoHtml
}
}
}
</script>
demo.pug
each color in colors
div(style=`color: ${color}`) #{color}
Note: The
colors
is external variable passed from App.vue.
srcset
in img
tagimg(srcset=`${require('./image1.jpeg')} 320w, ${require('./image2.jpeg')} 640w` src=require('./image.jpeg'))
output
<img srcset="/assets/image1.f78b30f4.jpeg 320w, /assets/image2.f78b30f4.jpeg 640w" src="/assets/image.f78b30f4.jpeg">
Use the require()
for CommonJS files in Pug templates.
The JS module say-hello.js
module.exports = function(name) {
return `Hello ${name}!`;
}
Use the module sayHello
in Pug template.
- var sayHello = require('./say-hello')
h1 #{sayHello('pug')}
npm run test
will run the unit and integration tests.
npm run test:coverage
will run the tests with coverage.
2.10.0 (2023-01-03)
img&attributes({
src: require('./image.png'),
srcset: `${require('./image1.png')} 80w, ${require('./image2.png')} 90w`,
})
FAQs
Pug loader renders Pug files into HTML or compiles them into a template function.
The npm package @webdiscus/pug-loader receives a total of 3,274 weekly downloads. As such, @webdiscus/pug-loader popularity was classified as popular.
We found that @webdiscus/pug-loader demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.