Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Ridiculously simple HTML templating. All it does is replaces "blocks" in your template with a local.
<div class="container">
{{content}}
</div>
block(html).render({
content: '<div class="inner"></div>'
})
yields:
<div class="container">
<div class="inner"></div>
</div>
That's it. HTML templating doesn't have to be any harder.
var block = require('block')
var template = block('<div class="container">{{content}}</div>')
html
is a string, and block
returns a new templating instance.
locals
is an object of "blocks" to replace in the template.
template.render({
content: '<a href="#">click me</a>'
}) === '<div class="container"><a href="#">click me</a></div>'
This is for nodejs only. file
is the name of the file, minify
strips whitespace.
var template = block.read(__dirname + '/template.html', false)
template.render({
content: ''
})
All minify
does, if true
, is html = html.replace(/\n\s*/, '')
.
WTFPL
FAQs
.replace('{{block}}', string)
The npm package block receives a total of 63 weekly downloads. As such, block popularity was classified as not popular.
We found that block 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
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.