1.0.8 • Published 4 years ago

js-koa-pug v1.0.8

Weekly downloads
19
License
MIT
Repository
-
Last release
4 years ago

js-koa-pug

Koa 2 middleware for rendering pug templates.

Installation

npm install --save js-koa-pug

API

pug(root, options)

  • root: Path to your views.
  • options Default render options see pug documentation for more.

context.render(file, options)

  • file: Path relative to root, without .pug extension.
  • options Overrides default options.

Example

var pug = require("js-koa-pug");

app.use(pug("views"));

app.use(function(ctx) {
  ctx.render("index");
});

Hint

For production environments its nice to have cache option enabled.

License

MIT, see more in LICENSE file.

1.0.8

4 years ago

1.0.7

6 years ago

1.0.6

6 years ago

1.0.4

7 years ago

1.0.3

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago