
Security News
Deno 2.6 + Socket: Supply Chain Defense In Your CLI
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.
template-file
Advanced tools
🔀 Replace {{ variables }} in all your files
Use variables to replace template strings in any type of file.
⚠️ NOTE: As of right now, only shallow values can be used in files. We know this sucks, and there’s an open issue for it. However, we believe in releasing early and often.
template-file <dataFile> <sourceGlob> <destination>
ℹ️ TIP: Remember to place single quotes around your arguments (if they contain asterisks, question marks, etc.) to keep your shell from expanding globs before template-file gets to consume them.
Just handle one file:
template-file data.json template.txt build/
Compile all .abc files in src/ to build/:
template-file stuff.json 'src/**/*.abc' build/
const { renderString, renderTemplateFile } = require('template-file')
const data = {
company: "GS&F",
adjective: "cool"
}
// Replace variables in string
renderString('{{ company }} is {{ adjective }}.', data) // 'GS&F is cool.'
// Replace variables in a file
renderTemplateFile('/path/to/file', data)
.then(renderedString => console.log(renderedString)) // same as above, but from file
With either Yarn or npm installed, run one of the following:
# If using Yarn, add to project:
yarn add template-file
# ...or install globally to use anywhere:
yarn global add template-file
# If using npm, add to project:
npm install --save template-file
# ...or install globally to use anywhere:
npm install --global template-file
MIT
FAQs
🔀 Replace {{ variables }} in all your files
The npm package template-file receives a total of 21,930 weekly downloads. As such, template-file popularity was classified as popular.
We found that template-file demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 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
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.