UNPKG
@fastify/view
Version:
latest (12.0.0)
next (10.0.0)
12.0.0
11.1.1
11.1.0
11.0.0
10.0.2
10.0.1
10.0.0
10.0.0-pre.fv5.2
10.0.0-pre.fv5.1
9.1.0
9.0.0
8.2.0
8.1.0
8.0.0
7.4.1
7.4.0
7.3.0
7.2.0
7.1.2
7.1.1
7.1.0
7.0.0
Template plugin for Fastify
github.com/fastify/point-of-view
fastify/point-of-view
@fastify/view
/
benchmark
/
fastify-ejs-global-layout.js
10 lines
(8 loc)
•
209 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
'use strict'
require
(
'./setup.js'
)({
engine
: {
ejs
:
require
(
'ejs'
) },
route
:
(
_req, reply
) =>
{ reply.
view
(
'index-for-layout.ejs'
, {
text
:
'text'
}) },
pluginOptions
: {
layout
:
'layout.html'
} })