
Security News
Socket Releases Free Certified Patches for Critical vm2 Sandbox Escape
A critical vm2 sandbox escape can allow untrusted JavaScript to break isolation and execute commands on the host Node.js process.
@novigi/template-engine
Advanced tools
Zero dependency stand-alone general purpose template engine for super fast templating 🛠
Zero dependency stand-alone general purpose template engine for super fast templating 🛠
'${deeply.nested.objects.are.supported}'npm install @novigi/template-engine
const lib = require('@novigi/template-engine');
Templates enable fast rendering of the server-side data that needs to be passed to the application.The template engine replaces the variables in a template file with actual values, and displays this value to the client. This makes it easier to quickly build our application. This is the guideline of compile-time text rendering capability.
const { template } = require('@novigi/template-engine')
template.render('We are from ${city}!', {city: 'Colombo'}) // We are from Colombo
// or simply
'We are from ${city}!'.render({city: 'Colombo'}) // We are from Colombo
stringStringstringThis function render a text, based on the templatedText and contextObject.
Kind: static method of template
Returns: string - rendered text
| Param | Type | Description |
|---|---|---|
| templatedText | string | templated text that needs to be replaced with context objects values |
| context | object | object that contains values for template |
Example
template.render('${city} is a coastal city', {city: 'Sydney'}) // Sydney is a coastal city
let ctx = {
location: {
city: {
state: 'NSW'
}
}
}
template.render('${location.city.state} is the state!', ctx) // NSW is the state!
Extension methods to built in String object.
Kind: inner external of template
StringExtension method to the String object to call render() method with context object.
Kind: instance method of String
Returns: String - rendered text
| Param | Type | Description |
|---|---|---|
| context | object | object that contains values for template |
Example
'We are from ${city}!'.render({city: 'Colombo'}) // We are from Colombo
This is an auto generated file. Please don't make changes manually
FAQs
Zero dependency stand-alone general purpose template engine for super fast templating 🛠
We found that @novigi/template-engine demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
A critical vm2 sandbox escape can allow untrusted JavaScript to break isolation and execute commands on the host Node.js process.

Research
Five malicious NuGet packages impersonate Chinese .NET libraries to deploy a stealer targeting browser credentials, crypto wallets, SSH keys, and local files.

Security News
pnpm 11 turns on a 1-day Minimum Release Age and blocks exotic subdeps by default, adding safeguards against fast-moving supply chain attacks.