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.
@behance/hogan-compiler
Advanced tools
This Browser / Node.js library is a helper for loading mustache templates via Hogan.js.
const hoganCompiler = require('@behance/hogan-compiler');
// Bring Your Own Driver
const fsDriver = require('@behance/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 @behance/hogan-compiler receives a total of 3 weekly downloads. As such, @behance/hogan-compiler popularity was classified as not popular.
We found that @behance/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.
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.