
Research
Security News
The Landscape of Malicious Open Source Packages: 2025 Mid‑Year Threat Report
A look at the top trends in how threat actors are weaponizing open source packages to deliver malware and persist across the software supply chain.
eval-interpolation-sandbox
Advanced tools
Javascript string interpolation with sandboxed JS code
Interpolate strings with sandboxed JS code
parseTemplate = require('eval-interpolation-sandbox')
parseTemplate( "`name`", {name: "John"} )
// 'John'
parseTemplate( "`name.join(' ')`", {name: ["John", "Locke"]} )
// 'John Locke'
parseTemplate( "`++i`; `++i`; `++i`", {i:0} )
// '1; 2; 3'
context = { i:0, names: ["John", "Paul"] }
parseTemplate( "`++i` - `names.shift()`", context )
parseTemplate( "`++i` - `names.shift()`", context )
// '1 - John'
// '2 - Paul'
npm install eval-interpolation-sandbox
To get the synchronous parser function with default options, just import the package root:
parseTemplate = require('eval-interpolation-sandbox')
result = parseTemplate( "`name.join(\" \")`", {name: ["Paul", "Jefferson"]} ) // 'Paul Jefferson'
To get the asynchronous parser, or set custom defalut options
ParserSync = parseTemplate.ParserSync
ParserAsync = parseTemplate.ParserAsync
parserAsync = new ParserAsync( {delimiter: ["\#{", "}"]} )
parserAsync.parseTemplate( "#{value}", {value: 42}, function(err,res){ console.log(res) } ) // '42'
opts
is an object with the default values of the same options passed to parseTemplate
template
is the string containing the tokens that will be evaluated.
context
is the object containing the values that will be available for the tokens.
callback(err,res)
opts
is an object which can receive the following options:
sandbox
(default: false)
Clones the context before parsing each token, thereby isolating the context for each token.
ignore
(default: false)
Ignores errors while parsing the template. The callback will return a list of errors, and the formatted string with the placeholders where the errors occurred replaced by blank space.
delimiter
(default: "`"
)
Defines the symbol that delimits both sides of the placeholders within the string. Accepts a string, which will define both delimiters, or an array with two strings, which will define the left and right delimiters, respectively.
parseTemplate( "\'value\'", {value: 42}, { delimiter: "\'" } )
parseTemplate( "\#{value}", {value: 42}, { delimiter: ["\#{", "}"] } )
The same as ParserAsync
, with parseTemplate
being synchronous and not accepting
the ignore
option.
opts
: {sandbox=0, delimiter="`"}
FAQs
Javascript string interpolation with sandboxed JS code
We found that eval-interpolation-sandbox 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
Security News
A look at the top trends in how threat actors are weaponizing open source packages to deliver malware and persist across the software supply chain.
Security News
ESLint now supports HTML linting with 48 new rules, expanding its language plugin system to cover more of the modern web development stack.
Security News
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.