包详细信息

egg-view-nunjucks

eggjs14.6kMIT2.3.0

nunjucks view plugin for egg

egg, eggPlugin, egg-plugin, egg-view

自述文件

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('<div></div>')
  • nunjucks build-in filters is injected to helper, such as helper.upper('test')
  • helper.shtml/surl/sjs/escape is auto wrapped with safe

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

更新日志

2.3.0 / 2021-01-14

features

others

2.2.0 / 2018-03-29

  • feat: support ts filter (#27)

2.1.6 / 2018-02-24

  • fix: nunjucks version to ^3.1.2 (#26)

2.1.5 / 2018-02-23

  • fix: temporary hold nunjucks version to ~3.0.1 (#25)
  • fix: ci crash when disable plugin (#24)
  • chore: test 6.x (#23)
  • docs: update README with async and custom tag (#22)

2.1.4 / 2017-09-19

fixes

2.1.3 / 2017-06-30

  • docs: improve code block in markdown (#19)

2.1.2 / 2017-06-01

  • fix: revert async filter support at #15 (#18)

2.1.1 / 2017-05-10

  • fix: async filter break helper (#16)

2.1.0 / 2017-04-28

  • feat: support async filter (#15)

2.0.0 / 2017-02-22

  • feat: [BREAKING_CHANGE] depend on egg-view (#11)
  • test: add custom tag showcase (#10)
  • feat: fix ci and adjust with new egg-bin test (#9)

1.0.0 / 2017-01-16

  • publish 1.0.0

0.7.0 / 2017-01-13

  • chore: code style (#8)

0.6.0 / 2016-11-03

  • chore: update deps and test on node v7 (#7)
  • test: change chai.js to power-assert (#6)

0.5.0 / 2016-09-18

  • feat: use egg-security escape to override nunjucks buildin (#5)

0.4.0 / 2016-09-13

  • deps: update nunjucks@2.5.1 for security (#4)

0.3.0 / 2016-08-31

  • feat: [BREAKING_CHANGE] app/views -> app/view (#3)
  • feat: [BREAKING_CHANGE] config.view.dir support multiple with comma (#3)

0.2.0 / 2016-08-17

  • feat: [BREAKING_CHANGE] use loader.getLoadUnits from egg-core (#2)

0.1.0 / 2016-08-03

  • init project
    • load app/extend/filter.js
    • egg-security
    • view helper
    • fill nunjucks build-in filters to helper
    • diff with @ali/nunjucks
      • dep on latest nunjucks version
      • loadpath -> dir
      • not listen watcher event