![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
liquid-node
Advanced tools
LiquidNode is a port of the original Liquid template engine from Ruby to Node.js. It uses Promises to support non-blocking/asynchronous variables, filters, and blocks.
<ul id="products">
{% for product in products %}
<li>
<h2>{{ product.name }}</h2>
Only {{ product.price | price }}
{{ product.description | prettyprint | paragraph }}
</li>
{% endfor %}
</ul>
npm install liquid-node --save
Liquid supports a very simple API based around the Liquid.Engine class. For standard use you can just pass it the content of a file and call render with an object.
Liquid = require("liquid-node")
var engine = new Liquid.Engine
engine
.parse("hi {{name}}")
.then(function(template) { return template.render({ name: "tobi" }); })
.then(function(result) { console.log(result) });
// or
engine
.parseAndRender("hi {{name}}", { name: "tobi" })
.then(function(result) { console.log(result) });
app.get(function(req, res) {
engine
.parseAndRender("hi {{name}}", { name: "tobi" })
.nodeify(function(err, result) {
if (err) {
res.end("ERROR: " + err);
} else {
res.end(result);
}
});
});
engine.registerFilters({
myFilter: function(input) {
return String(input).toUpperCase()
}
});
Since the code is based on the Ruby implementation we use CoffeeScript's class
which is a little bit difficult to write in pure JavaScript.
Take a look at the existing tags
to see how to implement them.
class MyTag extends Liquid.Tag
render: ->
"that's me!"
engine.registerTag "MyTag", MyTag
npm test
liquid-node
wrapped to run in a browser.LiquidNode is released under the MIT license.
FAQs
Node.js port of Tobias Lütke's Liquid template engine.
We found that liquid-node demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.