Skip to main content
Module

x/dejs/example/evaluate.ts

ejs template engine for deno.
Extremely Popular
Go to Latest
File
import { cwd, stdout, copy } from 'deno';import { renderFile } from '../dejs.ts';
(async () => { const output = await renderFile(`${cwd()}/evaluate.ejs`, {}); await copy(stdout, output);})();