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