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.
babel-plugin-hyperstache
Advanced tools
babel-plugin-hyperstache
A Babel plugin to pre-compile handlebars.
Basic usage:
[
["hyperstache", {
"tag": "hbs",
"tagOut": "html",
"runtime": "hyperstache/runtime"
}]
]
// input:
hbs`<div id=hello>{{fruit}}</div>`({ fruit: 'Apple' });
// output:
const { template } = require("hyperstache/runtime");
template((hys,ctx,data) => html`<div id=hello>${
hys.escape(hys.expr("fruit",ctx,{data}))
}</div>`)({ fruit: 'Apple' });
tag=hbs
By default, babel-plugin-hyperstache
will process all Tagged Templates with a tag function named hbs
. To use a different name, use the tag
option in your Babel configuration:
{"plugins":[
["babel-plugin-hyperstache", {
"tag": "myCustomHbsFunction"
}]
]}
tagOut=html
The output tag given to Tagged Templates for further processing.
{"plugins":[
["babel-plugin-hyperstache", {
"tagOut": "myCustomHtmlFunction"
}]
]}
FAQs
Babel plugin to pre-compile handlebars.
We found that babel-plugin-hyperstache 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.