
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.
Plate is a Django Template Language implementation in Javascript. Super exciting!
Yes. Plate was designed to work well in the standard suite of browsers. Each minor point release will target compatibility with IE7+, FF3+, Chrome, and Safari 4+.
You can download a minified, precompiled version here.
If you're having trouble, try using the debug version, with source maps.
var plate = require('plate')
var template = new plate.Template('hello {{ world }}')
template.render({world:'everyone'}, function(err, data) {
console.log(data)
})
// outputs "hello everyone"
Plate follows the Node.js style of taking callbacks that receive an error object and a data object. If there's no
error, err will be null.
<script type="text/javascript" src="plate.min.js">
<script type="text/html" id="template">
hello {{ world }}.
</script>
<script type="text/javascript">
var source = $('#template').text()
, template = new plate.Template(source)
template.render({world: 'everyone'}, function(err, data) {
console.log(data)
})
</script>
require(['plate.min'], function(plate) {
var template = new plate.Template('hello {{ world }}')
})
Plate is documented on its github wiki. There are "Getting Started" guides for both in-browser as well as in-node environments.
Got a feature you'd like to add? I'd love to see it. The workflow is pretty standard Github fare:
The minimum requirements for a pull request to be merged are:
docs/ folder in Markdown format.In node:
$ npm install plate
$ npm test plate
Licensed MIT.
FAQs
A javascript templating language
The npm package plate receives a total of 71 weekly downloads. As such, plate popularity was classified as not popular.
We found that plate 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.