MCPcopy Index your code
hub / github.com/eggjs/egg-view-nunjucks

github.com/eggjs/egg-view-nunjucks @2.3.0

Chat with this repo
repository ↗ · DeepWiki ↗ · release 2.3.0 ↗ · + Follow
31 symbols 43 edges 39 files 12 documented · 39% 4 cross-repo links updated 5y ago★ 90
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

egg-view-nunjucks

NPM version build status Test coverage David deps Known Vulnerabilities npm download

nunjucks view plugin for egg.

Install

$ npm i egg-view-nunjucks --save

Usage

// {app_root}/config/plugin.js
exports.nunjucks = {
  enable: true,
  package: 'egg-view-nunjucks',
};

Set mapping in config

// {app_root}/config/config.default.js
exports.view = {
  defaultViewEngine: 'nunjucks',
  mapping: {
    '.nj': 'nunjucks',
  },
};

Render in controller

// {app_root}/app/controller/test.js
class TestController extends Controller {
  async list() {
    const ctx = this.ctx;
    // ctx.body = await ctx.renderString('{{ name }}', { name: 'local' });
    // not need to assign `ctx.render` to `ctx.body`
    // https://github.com/mozilla/nunjucks/blob/6f3e4a36a71cfd59ddc8c1fc5dcd77b8c24d83f3/nunjucks/src/environment.js#L318
    await ctx.render('test.nj', { name: 'view test' }, {
      path: '***'
    });
  }
}

Feature

Filter

  • escape filter is replaced by helper.escape which is provided by egg-security for better performance
  • Add your filters to app/extend/filter.js, then they will be injected automatically to nunjucks
// {app_root}/app/extend/filter.js
exports.hello = name => `hi, ${name}`;

// so you could use it at template
// {app_root}/app/controller/test.js
class TestController extends Controller {
  async list() {
    const ctx = this.ctx;
    ctx.body = await ctx.renderString('{{ name | hello }}', { name: 'egg' }, {
      path: '***'
    });
  };
}

Tag

you can extend custom tag like this:

// {app_root}/app.js
const markdown = require('nunjucks-markdown');
const marked = require('marked');

module.exports = app => {
  markdown.register(app.nunjucks, marked);
};

Security

see egg-security

  • auto inject _csrf attr to form field
  • auto inject nonce attr to script tag

Helper / Locals

  • you can use helper/ctx/request in template, such as `helper.shtml('

')- nunjucks build-in filters is injected to helper, such ashelper.upper('test')-helper.shtml/surl/sjs/escapeis auto wrapped withsafe`

More

  • app.nunjucks - nunjucks environment
  • app.nunjucks.cleanCache(fullPath/tplName) to easy clean cache, can use with custom egg-watcher

Configuration

see config/config.default.js for more detail.

Questions & Suggestions

Please open an issue here.

License

MIT

Core symbols most depended-on inside this repo

render
called by 18
lib/view.js
renderString
called by 10
lib/view.js
cleanCache
called by 4
lib/environment.js
resolveModule
called by 1
lib/environment.js
constructor
called by 0
lib/view.js
constructor
called by 0
lib/file_loader.js
getSource
called by 0
lib/file_loader.js
constructor
called by 0
lib/environment.js

Shape

Method 15
Class 12
Function 4

Languages

TypeScript100%

Modules by API surface

lib/helper.js7 symbols
test/fixtures/framework/index.js6 symbols
lib/environment.js6 symbols
lib/view.js5 symbols
lib/file_loader.js4 symbols
test/fixtures/view-helper/app/extend/helper.js1 symbols
test/fixtures/security/app/router.js1 symbols
app/extend/application.js1 symbols

For agents

$ claude mcp add egg-view-nunjucks \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact