Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
fastify
GitHub Repository: fastify/point-of-view
Path: blob/main/benchmark/fastify-ejs-async.js
106 views
1
'use strict'
2
3
require('./setup.js')({
4
engine: { ejs: require('ejs') },
5
route: (_req, reply) => { reply.view('ejs-async.ejs', { text: 'text' }) },
6
options: { async: true }
7
})
8
9