
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
expressive-template
Advanced tools
A simple templating engine that's allows for the template replacements to be tracked as text ranges
The intention of this project was to write a simple template engine that allows for template changes to be easily tracked. Making it easy to see what text range was replaced/rendered.
npm install -S expressive-template
Render a template and view the first rendered expression's text range
const {renderTemplateExpressionsWithContext} = require('expressive-template');
const results = renderTemplateExpressionsWithContext('\n{{ first }}\n, {{ name }}', {
first: 'Hey',
name: 'Jason'
});
console.log(results.text); // '\nHey\n, Jason'
console.log(results.expressions[0].getCurrentRange()); // [ { column: 0, line: 1 }, { column: 0, line: 2 } ]
A basic template render
const {renderTemplate} = require('expressive-template');
const results = renderTemplate('Hello, {{ name }}', {name: 'Jason'});
console.log(results); // Hello, Jason
FAQs
A simple templating engine that's allows for the template replacements to be tracked as text ranges
The npm package expressive-template receives a total of 7 weekly downloads. As such, expressive-template popularity was classified as not popular.
We found that expressive-template 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.