bamei-module-express-engine-nunjucks

0.0.12 • Public • Published

NPM version David deps node version npm download

bamei-module-express-engine-nunjucks

express 框架使用 nunjucks 模板引擎

本项目需要在 Node.js v6.0 或更高版本上运行

安装

$ npm install bamei-module-express-engine-nunjucks --save

依赖模块

  • bamei-module-express@*

配置说明

function fillDefaultConfig(config) {
  return Object.assign({
    // 自动转义输出的变量
    autoescape: true,
    // 监听文件变化,有更新时自动重载
    watch: true,
    // 当变量是undefined时抛出异常
    throwOnUndefined: false,
    // 删除标签空行
    trimBlocks: false,
    // 删除标签左边的空格
    lstripBlocks: false,
    // 不使用缓存
    noCache: true,
    // 模板引擎目录
    viewsDir: this.get('express.app').get('views'),
    // express实例
    express: this.get('express.app'),
    // 其他参考 nunjucks 模块
  }, config);
}

初始化

module.exports = require('bamei').create(function (ctx) {
  // 先初始化依赖的模块
  ctx.module('express');
  
  // 使用 ctx.config.get('express-engine-nunjucks') 的配置初始化
  ctx.module('express-engine-nunjucks');
  // 或者
  // 自定义配置初始化
  const options = {};
  ctx.module('express-engine-nunjucks', options);
});

License

MIT License

Copyright (c) 2016 Zongmin Lei <leizongmin@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Readme

Keywords

none

Package Sidebar

Install

npm i bamei-module-express-engine-nunjucks

Weekly Downloads

1

Version

0.0.12

License

MIT

Last publish

Collaborators

  • leizongmin