
Security News
The Next Open Source Security Race: Triage at Machine Speed
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.
multi-tenant-engine-munger
Advanced tools
A replacement Express view class that provides asynchronous resolution, internationalization and specialization support
A replacement Express view class that provides asynchronous resolution, allows engines to use the lookup method to locate partials, and extends the lookup method to be configurable based on i18n locale and a template specialization rule map.
This is a backport of work for Express 5
i18n means "internationalization". Given a locale property in the render options, engine-munger will look for content in a locale-specific directory (or in a fallback locale if that is not a match) for templates and partials. This is particularly useful with template engines that pre-localize their compiled forms, such as with localizr and dustjs-linkedin together.
Ability to switch a specific template with another based on a rule set specified in the app config. The actual rule parsing is done using the module karka.
All engine-munger does is includes a specialization map with the list of key value pairs using the karka module.
{
specialization : {
'jekyll': [
{
is: 'hyde',
when: {
'whoAmI': 'badGuy'
}
}
]
}
}
The above will switch the template from jekyll to hyde if the render options contain "whoAmI": "badGuy". Rules can be as complex as you need for your application and are particularly good for running A/B tests.
This example uses the adaro template engine, which wraps dust up as an express view engine, and uses engine-munger's more sophisticated lookup method to find partials, allowing them to be localized and specialized based on the render options.
var munger = require('engine-munger');
var adaro = require('adaro');
var app = require('express')();
var specialization = {
'jekyll': [
{
is: 'hyde',
when: {
'whoAmI': 'badGuy'
}
}
]
};
app.set("view", munger({
"dust": {
specialization: specialization
},
"js": {
specialization: specialization,
i18n: {
fallback: 'en-US',
contentPath: 'locales'
}
}
});
var engineConfig = {}; // Configuration for your view engine
app.engine('dust', adaro.dust(engineConfig));
app.engine('js', adaro.js(engineConfig));
Running Tests:
npm test
To run coverage:
npm run cover
FAQs
A replacement Express view class that provides asynchronous resolution, internationalization and specialization support
We found that multi-tenant-engine-munger 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
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.

Security News
gem.coop is testing registry-level dependency cooldowns to limit exposure during the brief window when malicious gems are most likely to spread.