typescript-rest
typescript-rest copied to clipboard
Is it possible to return hbs template to load landing page with rest API ?
I wanna use this api for all kind of request & response types and I want to render the 'index.hbs' template for the request made to path '/' like this :
@Path('/') export class IndexController { @GET public index(@ContextResponse response: express.Response) { response.render('index', {title: 'Social | Main Page'}); } }
Is it possible?