Skip to main content
Module

x/dejs/example/include.ts

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