I installed liquid.js for Nodejs following the official instruction as:
But the instruction page does not mention on deno at all.
Please help me to install the library in deno.
Or at least I want to know how to copy the library from node_modules dir to my deno's project.
npm install --save liquidjs
var { Liquid } = require('liquidjs');
var engine = new Liquid();
engine
.parseAndRender('{{name | capitalize}}', {name: 'alice'})
.then(console.log); // outputs 'Alice'