
Security News
PodRocket Podcast: Inside the Recent npm Supply Chain Attacks
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
be-hogan-compiler
Advanced tools
This Browser / Node.js library is a helper for loading mustache templates via Hogan.js.
const hoganCompiler = require('be-hogan-compiler');
// Bring Your Own Driver
const fsDriver = require('be-hogan-compiler/src/drivers/fs');
const templatesPath = '/tmp';
const compiler = hoganCompiler.create(fsDriver, templatesPath/*, options */);
// When using `options.isCached`, you may want to populate the cache before making `.compile()` calls
compiler.populateCache()
.then(() => console.log('Cache has been populated'));
// provide just the name, no need for the template dir or the extension
compiler.compile('my_template')
.then((template) => {
const renderedString = template.render({ name: 'Mary' });
console.log(renderedString);
});
driver
- will be used to read files. All methods must return a Promise. See src/drivers/fs
for an example.templatesPath
- absolute path to the templatesoptions.extension
- defaults to mustache
(e.g., template.mustache
)options.isCached
- cache compiled templates in the created instanceasString
- return the compiled template as a string. This feature is used by hulk to produce strings containing pre-compiled templates.sectionTags
- allow custom tags that require opening and closing tags, and treat them as though they were section tags.delimiters
- A string that overrides the default delimiters. Example: "<% %>"disableLambda
- isables the higher-order sections / lambda-replace features of Mustache.For more details see Hogan Compilation options.
FAQs
Behance Hogan Compiler
The npm package be-hogan-compiler receives a total of 1 weekly downloads. As such, be-hogan-compiler popularity was classified as not popular.
We found that be-hogan-compiler demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 14 open source maintainers 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
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.