
Research
Node.js Fixes AsyncLocalStorage Crash Bug That Could Take Down Production Servers
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.
richardparker
Advanced tools
Simple template engine for two way bindings.


A Tiger? Richard Parker was a Tiger? Yeah! He got his name through a clerical error. A Hunter caught him when drinking from a stream when he was a cub, and named him Thirsty. When Thirsty got too big, the hunter sold him to our zoo, but the names got switched on the paperwork. The hunter was listed as Thirsty and the tiger was called Richard Parker. We laughed about it and the name stuck.
Render some tigers with Richard Parker
Its kind of Mustache in s-expressions.
Template:
{has fields
<form>
{each fields
{. label}: <input type="text" x-bind="{path name}" value="{. name}">
}
</form>
}
Data:
{
fields: [
{label: 'Hunter', name: 'Thirsty'},
{label: 'Tiger', name: 'Richard Parker'}
]
}
Output:
<form>
Hunter: <input type="text" x-bind="fields.0.name" value="Thirsty">
Tiger: <input type="text" x-bind="fields.1.name" value="Richard Parker">
</form>
In the example above the x-bind attribute is set to the path of the names in the data object. This is intended to be used for two way data bindings.
Richard Parker has no built in data bindings, but the bindings can be done with Pflock which uses the same syntax as the {path} macro.
Using npm
$ npm install richardparker
Using Component
$ component install manuelstofer/richardparker
The package can be consumed as a component or as a npm module.
Richard Parker can compile templates to common js or optionally to amd modules.
$ richardparker template.html # compile template.html and output to stdout
$ richardparker -a foo.html # compile test.html and output as amd module
var richard = require('richardparker'),
// render directly
html = richard('{has title <h1>{. title}</h1>}', {name: 'foo'});
// compile to javascript function
template = richard.compile('{has title <h1>{. title}</h1>}'),
New commands can be added quite easily as compile time marcros. To see how its done checkout the native marcros like has, each and path.
FAQs
Simple template engine for two way bindings
We found that richardparker 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
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.

Research
/Security News
A malicious Chrome extension steals newly created MEXC API keys, exfiltrates them to Telegram, and enables full account takeover with trading and withdrawal rights.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.