You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							46 lines
						
					
					
						
							1.3 KiB
						
					
					
				
			
		
		
	
	
							46 lines
						
					
					
						
							1.3 KiB
						
					
					
				| 'use strict'
 | |
| 
 | |
| const fastify = require('fastify')()
 | |
| const resolve = require('path').resolve
 | |
| const templatesFolder = 'templates'
 | |
| const data = { text: 'Hello from EJS Templates' }
 | |
| 
 | |
| fastify.register(require('./index'), {
 | |
|   engine: {
 | |
|     ejs: require('ejs')
 | |
|   },
 | |
|   defaultContext: {
 | |
|     header: 'header value defined as default contenxt',
 | |
|     footer: 'footer value defined as default contenxt'
 | |
|   },
 | |
|   includeViewExtension: true,
 | |
|   layout: 'layout',
 | |
|   templates: templatesFolder,
 | |
|   options: {
 | |
|     filename: resolve(templatesFolder)
 | |
|   },
 | |
|   charset: 'utf-8' // sample usage, but specifying the same value already used as default
 | |
| })
 | |
| 
 | |
| fastify.get('/', (req, reply) => {
 | |
|   // reply.type('text/html; charset=utf-8').view('index-linking-other-pages', data)  // sample for specifying with type
 | |
|   reply.view('index-linking-other-pages', data)
 | |
| })
 | |
| 
 | |
| fastify.get('/include-test', (req, reply) => {
 | |
|   reply.view('index-with-includes', data)
 | |
| })
 | |
| 
 | |
| fastify.get('/include-one-include-missing-test', (req, reply) => {
 | |
|   reply.view('index-with-includes-one-missing', data)
 | |
| })
 | |
| 
 | |
| fastify.get('/include-one-attribute-missing-test', (req, reply) => {
 | |
|   reply.view('index-with-includes-and-attribute-missing', data)
 | |
| })
 | |
| 
 | |
| fastify.listen(3000, err => {
 | |
|   if (err) throw err
 | |
|   console.log(`server listening on ${fastify.server.address().port}`)
 | |
| })
 |