Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
pure-engine
Advanced tools
Compile HTML templates into JS
Pure Engine is a library designed to compile HTML templates into JS. It analyses the template and generates an optimal rendering function that can be used on the client and the server. The compilation process should ideally happen in a build step (for the client) or the output could be memoized after first usage (for the server).
The syntax of the template should be easy to read and write. There are three types of tags: curly, square and html tags.
Status: Alpha / Proof of concept
{name}
is a curly tag
Curly tags can contain expressions, e.g. {1 + 2}
is a valid tag.
They can also contain additional filters like {name | capitalize}
.
<div>{name}</div>
[color]
is a square tag
Square tags are array expressions and can be used as values of html attributes.
<button class="[color, size, shape]"><slot/></button>
<if>
is an html tag
HTML tags can contain additional attributes, e.g. <if limit is a number>
is a valid tag. The attribute syntax follows the natural language principles.
<if name is present>
<div>hello {name}</div>
</if>
npm install pure-engine escape-html
const { compile } = import 'pure-engine'
const escape = import 'escape-html'
async function example () {
const { template } = await compile('<div>{foo}</div>')
console.log(template({ foo: 'bar' }, escape))
}
example()
If you're using webpack you should use pure-engine-loader.
<import layout from="./layouts/default.html">
<import { form, input, button } from="./components">
<layout>
<h1>Hello, world!</h1>
<form>
<input name="foo" />
<button>Submit</button>
</form>
</layout>
It's possible to import multiple components from a given directory. Curly brackets within the import tag are optional.
<partial from="./foo.html" />
<include partial="./foo.html" />
<render partial="./foo.html" />
<if foo>bar</if>
<for car in cars>
{car.brand}
</for>
<for key and value in car>
{key}{value}
</for>
{title | capitalize}
<img src="./foo.png" inline>
<div class="foo">bar</div>
<style scoped>
.foo {
color: red;
}
</style>
<h1><translate hello></h1>
<i18n yaml>
hello:
- 'Hej!'
- 'Hello!'
</i18n>
<div id="app"></div>
<script compiler="preact">
import { render } from "preact"
const Foo = ({ bar }) => {
return (<span>{bar}</span>)
}
render(
<Foo bar="baz" />,
document.getElementById("app")
)
</script>
<if foo.length equals 0>{bar}</if>
function render(__o, __e) {
var __t = "";
if (__o.foo.length === 0) {
__t += __e(__o.bar);
}
return __t;
}
<for month in months>{month}</for>
function render(__o, __e) {
var __t = "";
for (var a = 0, b = __o.months.length; a < b; a += 1) {
var month = __o.months[a];
__t += __e(month);
}
return __t;
}
<foreach month in months>{month}</foreach>
function render(__o, __e) {
var __t = "";
__o.months.forEach(function (month) {
__t += __e(month);
});
return __t;
}
npm run benchmark
All contributions are highly appreciated. Please feel free to open new issues and send PRs.
MIT
FAQs
Compile HTML templates into JS
We found that pure-engine 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.