Viscous.js is a simple and straightforward templating engine, similar to Liquid(.js), but with some modifications so that it's nicer to use:
- Operator precedence is taken into account.
- Nested parenthesized expressions are allowed.
- Helper function calls can be used.
- Less strict on certain control flow block names:
{% else if %}
and{% elseif %}
are acceptable variations of{% elsif %}
, and{% end %}
can be used instead of{% endXYZ %}
.
It doesn't yet have feature parity, because these things (amongst others) are still missing:
- Helper loop variables like
forloop
andindex0
etc. - Other kinds of iteration
- The comment, cycle, increment, decrement, raw, and capture tags
- Async data / rendering
And then there are certain features that I'm probably won'y be adding (unless someone wishes to contribute):
- The include, case/when, layout, render, and tablerow tags
yarn add @mywheels/viscousjs
import { parseAndEvaluate, parseAndRender } from "@mywheels/viscousjs";
const data = {
happy: true,
hello: {
world: 40,
},
};
// 42
const result = parseAndEvaluate(`hello.world + 2`, data);
// "clap your hands"
const output = parseAndRender(`
{%- if happy -%}
clap your hands
{%- end -%}
`);
- if
{% if <cond> %}
{% elsif <cond> %}
- or
{% elseif <cond> %}
- or
{% else if <cond> %}
- or
{% else %}
{% endif %}
- or just
{% end %}
- or just
- unless
{% unless <cond> %}
{% endunless %}
- or just
{% end %}
- or just
- for
{% for <name> in <arr> %}
- or
{% for <name> of <arr> %}
- or
{% endfor %}
- or just
{% end %}
- or just
- assignment
{% assign <name> = <expression> %}
{{ <expression> }}
{{ <expression> | <filter> }}
{{ <expression> | <filter>: <args> }}
{{ <expression> | ... | ... | ... }}
Both interpolation and control flow blocks accept whitespace trimmers at either end, for example {% if true -%}
or {{- expr -}}
. These trim whitespace off of the preceding and/or succeeding raw template pieces.
You can form expressions with all the ordinary mathematical operators and comparators, double and triple (in)equality, and contains
(which works for strings as well as arrays).
Also, you can use helper functions in expressions like max(a, b)
or cond(d, a, b)
.
Interpolation blocks accept filters, which transform the evaluated expression before interpolating it into the output.
{{ name | upper }}
might become "ROSE"{{ 8 | max: 4 }}
becomes "4"
You can use multiple filters:
{{ 3.14 | min: 0 | ceil }}
becomes "4"
You can pass multiple arguments:
{{ 8 | clamp: 4, 6 }}
becomes "6"
You can use expressions in filters:
{{ fuelLevel | clamp: config.minLevel, config.maxLevel }}
Filters are just helpers which are passed the interpolated value as first argument. For example, {{ 8 | max: 4 }}
evaluates as max(8, 4)
.
You can register additional helper functions in the helpers
config key:
parseAndRender(`
{{ hello | world }}
{{ dino | raise: food, love }}
`,
data,
{
helpers: {
world(hello) { ... },
raise(dino, food, love) { ... },
},
}
);
Like Liquid, an expression is considered truthy whenever it's a true
, a number, a string or an object. So, also ""
and 0
and []
are considered truthy.
You can also provide your own truthiness check with the isTruthy
config key.
If the template fails to parse or render, parseAndEvaluate
will return undefined
, and parseAndRender
will return an empty string. If you want parse or runtime errors to be thrown instead, you pass the config key throwOnError: true
.
type ViscousConfig = {
helpers?: Record<string, Function>;
isTruthy?: (data: any) => boolean;
throwOnError?: boolean;
evaluate?: (expr: ExprNode, env?: any) => any;
};
More will be added soon. (And just make a PR if you want to contribute yours :))
-
general purpose
default
(fallback)stringify
(data)
-
numeric
abs
(num)ceil
(num)floor
(num)at_least
(min)at_most
(max)clamp
(min, max)
-
strings
append
(str)upcase
(str)upper
(str)
downcase
(str)lower
(str)
-
control
if
(cond, a, b)cond
(cond, a, b)
- Liquid.js — the origin of Viscous.js
- Handlebars — all-time simplicity's favorite
- Twig.js — quite similar to Liquid.js; a port of PHP's twig engine
- EJS — "JavaScript but then in a templating language", way more powerful but not ideal as a content format
- ...and more...