mojolicious / mojo-plugin-nunjucks

:construction: mojo.js plugin example (TypeScript)

Home Page:https://www.npmjs.com/package/mojo-plugin-nunjucks

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Coverage Status npm

A mojo.js plugin that adds support for nunjucks templates. The code of this plugin is a good example for learning to build new plugins with TypeScript, you're welcome to fork it.

import mojo from '@mojojs/core';
import nunjucksPlugin from 'mojo-plugin-nunjucks';

const app = mojo();
app.plugin(nunjucksPlugin);

// Render template "views/index.html.njk"
app.get('/template', async ctx => {
  await ctx.render({view: 'index'});
});

// Render an inline nunjucks template
app.get('/inline', async ctx => {
  await ctx.render({inline: '{{ greeting }} World!', engine: 'njk'}, {greeting: 'Hello'});
});

app.start();

To change the default engine for inline templates you can also set app.renderer.defaultEngine to njk. Or you can register the template engine with a completely different name.

app.plugin(nunjucksPlugin, {name: 'foo'});
app.renderer.defaultEngine = 'foo';

You can also extend the environment with custom filters and tags.

app.renderer.engines.njk.env.addFilter('hello', name => {
  return `hello ${name}`;
});

Installation

All you need is Node.js 16.0.0 (or newer).

$ npm install mojo-plugin-nunjucks

Support

If you have any questions the documentation might not yet answer, don't hesitate to ask in the Forum, on Matrix, or IRC.

About

:construction: mojo.js plugin example (TypeScript)

https://www.npmjs.com/package/mojo-plugin-nunjucks

License:MIT License


Languages

Language:TypeScript 47.4%Language:JavaScript 44.5%Language:Nunjucks 8.1%