Security News
TC39 Advances 10+ ECMAScript Proposals: Key Features to Watch
TC39 is meeting in Tokyo this week and they have approved nearly a dozen proposals to advance to the next stages.
@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 1 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.
Security News
TC39 is meeting in Tokyo this week and they have approved nearly a dozen proposals to advance to the next stages.
Security News
Our threat research team breaks down two malicious npm packages designed to exploit developer trust, steal your data, and destroy data on your machine.
Security News
A senior white house official is urging insurers to stop covering ransomware payments, indicating possible stricter regulations to deter cybercrime.