Package Exports
- liquid
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (liquid) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Liquid with Node.js
This 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.
Features
- Supports asynchronous variables, tags, functions and filters (helpers)
- Supports whitespace control
- Allows custom tags and filters to be added
- Supports full liquid syntax
- Based on original Ruby code
- High test coverage
What does it look like?
<ul id="products">
{% for product in products %}
<li>
<h2>{{ product.name }}</h2>
Only {{ product.price | price }}
{{ product.description | prettyprint | paragraph }}
</li>
{% endfor %}
</ul>Installation
npm install liquidUsage
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.
const Liquid = require('liquid')
const engine = new Liquid.Engine()
engine
.parse('hi {{name}}')
.then(template => template.render({ name: 'tobi' }))
.then(result => console.log(result))
// or
engine
.parseAndRender('hi {{name}}', { name: 'tobi' })
.then(result => console.log(result))Usage with Connect and Express
app.get((req, res, next) => {
engine
.parseAndRender('hi {{name}}', { name: 'tobi' })
.nodeify((err, result) => {
if (err) {
res.end('ERROR: ' + err)
} else {
res.end(result)
}
})
})Registering new filters
engine.registerFilters({
myFilter: input => {
return String(input).toUpperCase()
}
})Registering new tags
Take a look at the existing tags to see how to implement them.
class MyTag extends Liquid.Tag {
render () {
return 'hello world'
}
}
engine.registerTag('MyTag', MyTag)Tests
npm testSimilar libraries
- harttle/liquidjs (
liquidjson npm) is another actively maintained Liquid parser and render for Node.js - darthapo's Liquid.js is liquid ported to JavaScript to be run within the browser. It doesn't handle asynchrony.
- tchype's Liquid.js is
liquid-nodewrapped to run in a browser.
License
Contributors ✨
Thanks goes to these wonderful people (emoji key):
Marcel Jackwerth 💻 📖 |
Tony C. Heupel 💻 |
Chen Yangjian 💻 |
Henri Bergius 💻 |
Sam Tiffin 💻 |
Kris Ciccarello 💻 |
Cory Reed 💻 💡 📖 |
Sebastian Seilund 💻 |
Rob Loach 💻 |
Sarah Schneider 💻 |
Zeke Sikelianos 💻 📖 🚧 |
This project follows the all-contributors specification. Contributions of any kind welcome!