This package is no longer maintained, as its functionality has been implemented in View Responder.
EJS Responder is a first-party extension for Tuft which allows the use of the EJS template engine for rendering views. For detailed information on how Tuft responders work, view the official documentation.
$ npm install @tuft/ejs-responder
Import the named createEjsResponder
function, and then invoke it to create a Tuft responder that can be inserted into any Tuft application. The EJS responder will be triggered by any Tuft response object that contains a render
property.
const { tuft } = require('tuft')
const { createEjsResponder } = require('@tuft/ejs-responder')
const app = tuft({
responders: [createEjsResponder()]
})
app.set('GET /', () => {
return {
render: {
template: '<h1>Welcome to <%= title %>!</h1>',
data: { title: 'Tuft' }
}
}
})
The example above will respond with the following HTML:
<h1>Welcome to Tuft!</h1>
EJS files are also supported via the filename
property:
app.set('GET /', () => {
return {
render: {
filename: './path/to/views/index.ejs',
data: { title: 'Tuft' }
}
}
})
To utilize the EJS responder, add a render
property to a Tuft response object and set it to an object containing one or more of the following properties:
template
- An EJS template string.filename
- Path to an*.ejs
file.data
- An object containing the data to be inserted into the rendered HTML.options
- An object of EJS options to be passed to the EJS rendering function.
If the both template
and filename
are present, then template
will be ignored. If neither of them are present, the EJS responder will return handling of the response back to the Tuft application.
data
and options
are optional, although if the provided template references data that you fail to provide, then EJS will throw a ReferenceError
.
The creator and maintainer of EJS Responder is Stuart Kennedy.