Security News
vlt Debuts New JavaScript Package Manager and Serverless Registry at NodeConf EU
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
broccoli-pug
Advanced tools
broccoli-pug
compiles or renders pug
templates.
Because of Broccoli's design, this plugin is unable to resolve relative
imports to files outside of its input nodes. The workaround for this is to move
all relative imports into the input nodes (e.g. using broccoli-funnel
and then
broccoli-merge
). Note that imports must be in the same input node; it is not
sufficient to simply include imports as a separate input node. You can do this
by combining nodes using broccoli-merge
.
var pug = require('broccoli-pug');
var html = pug([inputTree1, inputTree2], {
render: true
pugOptions: {
// ...
}
});
pug(inputs, options)
inputs
is an array of input Broccoli nodes.
options
is an optional object specifying plugin options.
options.render
is a boolean. If true, broccoli-pug
will render templates to
HTML rather than compiling to a JS function.
options.pugOptions
specifies options for the pug
compiler. It is passed
directly to the compiler.
I would love if anybody could contribute some tests to this repository. Feel free to leave PRs, test or otherwise.
Copyright 2016 Lehao Zhang. Released to the general public under the terms of the ISC license.
FAQs
`broccoli-pug` compiles or renders `pug` templates.
We found that broccoli-pug demonstrated a not healthy version release cadence and project activity because the last version was released 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.
Security News
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
Security News
Research
The Socket Research Team uncovered a malicious Python package typosquatting the popular 'fabric' SSH library, silently exfiltrating AWS credentials from unsuspecting developers.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.