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
The library is a compiler designed to generate an optimal rendering function. The function should get cached and reused to provide a much better performance than other templating languages.
It can also be used in variety of contexts, for rendering html pages, email templates, pdf templates. It's capable of importing components and partials, inlining images and styles, which can be useful in those scenarios. The syntax should be easy to read and write.
Not everything is ready yet, but long-term, the library should be able to generate a template that includes minified html with critical css/js that's required to run the page. Scoped css/js should let you build big, dynamic apps.
Server-side rendering works out of the box, and some day we'd like to include an optional runtime with a minimal footprint, which allows you to seamlessly switch to a single-page-app mode, without page reloads.
Even further in the future, the compiler is going to be split into a front-end compiler and a back-end compiler, that will use an intermediate representation to represent the app. This way it'll allow the app to be written in a different way, while preserving the performance, which will get better over time, as the compiler matures.
If this sounds great, jump on board and try it out. Every little bit helps.
Beta / Used in production / Needs security assessment
{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>
Hello, {name}!
<else>
Welcome!
<end>
npm install pure-engine
const { compile, escape } = require('pure-engine')
async function example () {
const { template } = await compile('<div>{foo}</div>', { cache: false })
console.log(template({ foo: 'bar' }, escape))
}
example()
You can import components and use them.
<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.
You can use the special <slot/>
tag if you want to render children nodes.
You can also render html partials inline. It can be useful for fragments or pages like header, footer etc.
<partial from="./foo.html" />
<include partial="./foo.html" />
<render partial="./foo.html" />
There are two syntaxes you can use - short and long. The short one allows you to specify the starting tags only, for example:
<if foo>bar<end>
<if foo>
bar
<elseif baz>
qux
<else>
quux
<end>
<unless foo>bar<end>
The long syntax requires to specify closing tags explicitly.
<if foo>
bar
</if>
<else>
baz
</else>
The only difference between those methods is what is being used under the hood, <for>
uses a standard for tag, <each>
and <foreach>
call .each(
and .forEach(
method of given object.
<for car of cars>
{car.brand}
</for>
<for car and index of cars>
#{index + 1} {car.brand}
</for>
<for key and value in object>
{key}: {value}
</for>
Custom spacing can be tough. You can use a spacing tag, which can be used to define it per app basis.
<spacing medium/>
You need to specify the heights as a part of the compiler's options.
const { template } = await compile(`<spacing medium>`, {
styles: {
spacing: {
small: '25px',
medium: '50px',
big: '100px'
}
}
})
The engine removes unnecessary whitespaces to reduce the size of the template. You can add a space explicitly though.
<space/>
<space repeat="{5}"/>
Always forgetting how to write html entities? Maybe this helps:
<entity lt>
<entity gt>
<entity amp>
<entity less than>
<entity greater than>
<entity ampersand>
You can define local components as well. It can be useful for tiny bits of html. Don't forget to specify the name of the component.
<template foo>{bar}</template>
<foo {bar}/>
There are many filters available out of the box.
{title | capitalize}
{title | uppercase}
Filters can be chained too.
{title | trim | classify}
Params can be passed as well.
{title | slugify('_')}
Full list of filters is available here.
Custom spacing is often a problem, so you can add paddings, margins and borders using a shorter syntax.
<div padding-bottom="1rem"></div>
You can define styles as objects too.
<div css="{{ padding: { bottom: '1rem', top: '2rem' } }}"></div>
Partial attribute will load the html file and include as the children of given node. The tag will be preserved.
<head partial="./head.html"></head>
It's possible to inline images as base64 strings.
<img src="images/foo.png" inline>
You can inline svgs too.
<svg from="images/foo.svg"/>
Scoped styles are adding special scope-${number}
classes to both html and css to ensure they're unique.
<div class="foo">bar</div>
<style scoped>
.foo {
color: red;
}
</style>
You can hook up any compiler, which will transform and inline the source code.
<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>
Polyfills can be injected.
<script polyfills="['promise.js']">
new Promise(resolve => resolve())
</script>
You can keep translations in every file. They're scoped so you can use same names in multiple files.
<h1><translate hello/></h1>
<i18n yaml>
hello:
- 'Hej!'
- 'Hello!'
</i18n>
The compiler needs to know the languages
. The template needs to get the language
to know which text to render.
Translations can also use filters:
<translate title|capitalize/>
The engine transforms html templates to a single rendering function. The compiler inlines variables, uses only the paths it needs and does other optimizations to create a fast template. There's still a big space for improvements, but the benchmarks look promising.
Let's have a look at some examples.
In this one, we'd like to render {bar}
. The function has two parameters - __o (options) and __e (escape), which are referenced and used below.
<if foo.length equals 0>{bar}</if>
function render(__o, __e) {
var __t = "";
if (__o.foo.length === 0) {
__t += __e(__o.bar);
}
return __t;
}
Let's have a look at a simple loop now.
<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;
}
Using <foreach
results with a slighty different code.
<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
todos: pure-engine x 5,563,903 ops/sec ±1.21% (87 runs sampled)
todos: underscore x 229,349 ops/sec ±1.10% (92 runs sampled)
todos: lodash x 274,233 ops/sec ±0.93% (88 runs sampled)
todos: handlebars x 237,890 ops/sec ±1.04% (89 runs sampled)
todos: mustache x 550,987 ops/sec ±0.46% (92 runs sampled)
Fastest is pure-engine
✔ benchmark: todos (31s)
friends: pure-engine x 1,661,007 ops/sec ±0.34% (92 runs sampled)
friends: underscore x 105,190 ops/sec ±0.33% (89 runs sampled)
friends: lodash x 139,677 ops/sec ±0.62% (89 runs sampled)
friends: handlebars x 289,353 ops/sec ±0.25% (89 runs sampled)
friends: mustache x 163,736 ops/sec ±0.43% (86 runs sampled)
Fastest is pure-engine
✔ benchmark: friends (30.6s)
if: pure-engine x 58,634,397 ops/sec ±2.70% (83 runs sampled)
if: underscore x 532,136 ops/sec ±1.05% (89 runs sampled)
if: lodash x 570,715 ops/sec ±0.62% (91 runs sampled)
if: handlebars x 292,520 ops/sec ±0.31% (89 runs sampled)
if: mustache x 708,163 ops/sec ±0.51% (86 runs sampled)
Fastest is pure-engine
✔ benchmark: if (30.8s)
projects: pure-engine x 1,920,711 ops/sec ±1.04% (89 runs sampled)
projects: underscore x 119,694 ops/sec ±0.34% (90 runs sampled)
projects: lodash x 157,345 ops/sec ±0.44% (91 runs sampled)
projects: handlebars x 224,298 ops/sec ±0.34% (92 runs sampled)
projects: mustache x 229,673 ops/sec ±0.87% (91 runs sampled)
Fastest is pure-engine
✔ benchmark: projects (30.9s)
search: pure-engine x 684,211 ops/sec ±0.34% (88 runs sampled)
search: underscore x 24,546 ops/sec ±0.49% (93 runs sampled)
search: lodash x 29,739 ops/sec ±0.64% (89 runs sampled)
search: handlebars x 260,162 ops/sec ±0.55% (90 runs sampled)
search: mustache x 104,369 ops/sec ±0.87% (91 runs sampled)
Fastest is pure-engine
✔ benchmark: search (31.1s)
All contributions are highly appreciated. Please feel free to open new issues and send PRs.
MIT
FAQs
Compile HTML templates into JS
The npm package pure-engine receives a total of 4 weekly downloads. As such, pure-engine popularity was classified as not popular.
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.