All Projects → chrisyip → egg-view-pug

chrisyip / egg-view-pug

Licence: MIT license
egg view plugin for pug.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to egg-view-pug

egg-view-react
egg view plugin for react
Stars: ✭ 89 (+270.83%)
Mutual labels:  egg, egg-plugin, egg-view
egg-view-vue-ssr
Egg Vue Server Side Render (SSR) Plugin
Stars: ✭ 90 (+275%)
Mutual labels:  egg, egg-plugin, egg-view
egg-elasticsearch
elasticsearch client for egg.js
Stars: ✭ 22 (-8.33%)
Mutual labels:  egg, egg-plugin
egg-kafka-node
kafka plugin for egg.js
Stars: ✭ 36 (+50%)
Mutual labels:  egg, egg-plugin
egg-kafkajs
☎️kafka plugin for eggjs
Stars: ✭ 26 (+8.33%)
Mutual labels:  egg, egg-plugin
egg-mailer
🥚 mailer plugin for egg
Stars: ✭ 23 (-4.17%)
Mutual labels:  egg, egg-plugin
Egg Redis
redis plugin for egg
Stars: ✭ 234 (+875%)
Mutual labels:  egg, egg-plugin
egg-rbac
Role Based Access Control for eggjs
Stars: ✭ 32 (+33.33%)
Mutual labels:  egg, egg-plugin
Cool Admin Api
cool-admin-api 是基于egg.js、typeorm、jwt等封装的api开发脚手架、快速开发api接口
Stars: ✭ 188 (+683.33%)
Mutual labels:  egg, egg-plugin
egg-aop
AOP plugin for eggjs, add DI, AOP support.
Stars: ✭ 44 (+83.33%)
Mutual labels:  egg, egg-plugin
egg-sentry
Sentry Plugin For Egg.js
Stars: ✭ 18 (-25%)
Mutual labels:  egg, egg-plugin
egg-weapp-sdk
Egg的微信小程序登录会话管理SDK
Stars: ✭ 111 (+362.5%)
Mutual labels:  egg, egg-plugin
Egg Validate
validate plugin for egg
Stars: ✭ 224 (+833.33%)
Mutual labels:  egg, egg-plugin
Egg Socket.io
socket.io plugin for eggjs.
Stars: ✭ 209 (+770.83%)
Mutual labels:  egg, egg-plugin
egg-view-assets
Manage frontend assets in development and production.
Stars: ✭ 51 (+112.5%)
Mutual labels:  egg, egg-view
Egg Security
Security plugin for egg, force performance too.
Stars: ✭ 204 (+750%)
Mutual labels:  egg, egg-plugin
egg-exporter
Egg.js 的 Prometheus 指标收集插件,附带 Grafana 看板。
Stars: ✭ 24 (+0%)
Mutual labels:  egg, egg-plugin
Egg Multipart
multipart plugin for egg
Stars: ✭ 145 (+504.17%)
Mutual labels:  egg, egg-plugin
Egg Oauth2 Server
🌟 OAuth2 server plugin for egg.js based on node-oauth2-server
Stars: ✭ 174 (+625%)
Mutual labels:  egg, egg-plugin
egg-grpc
grpc plugin for egg
Stars: ✭ 79 (+229.17%)
Mutual labels:  egg, egg-plugin

egg-view-pug

NPM version Dependency Status Travis CI codecov

egg view plugin for pug.

V2 supports pug v3 and therefore requires node >= 10.

Install

npm i egg-view-pug --save

Usage

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

// {app_root}/config/config.default.js
exports.view = {
  mapping: {
    '.pug': 'pug',
  }
}

// configuration
exports.pug = {}

Create a pug file

//- app/view/hello.pug

extend layout/main

block header
  include partial/header

block content
  | hello #{data}

Render it

// app/controller/CONTROLLER.js
exports = {
  async ACTION (ctx) {
    await ctx.render('hello.pug', {
      data: 'world'
    })
  }
}

The file will be compiled and cached, you can change config.pug.cache = false to disable cache, it's disable in local env by default.

Configuration

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].