Repository
Current version released
4 years ago
Versions
Mustache template render
How to use renderer in Alosaur
import { renderFile } from 'https://deno.land/x/mustache/mod.ts';
app.useViewRender({
type: 'mustache',
basePath: `${Deno.cwd()}/views/`, // path to folder views
getBody: (path: string, model: Object, config: ViewRenderConfig) =>
renderFile(normalize(`${config.basePath}${path}.html`), model),
});