UNPKG

imagination-gen

Version:

<img src="https://salvage.is-inside.me/SWZL7qgA.png" alt="Imagination-Gen" width="250" /><br>

11 lines (10 loc) 256 B
const express = require("express"); const app = express(); app.set("view engine", "ejs"); app.get("/", (req, res) => { res.render("index", { name: "test", }); }); //Repeat these practices, by getting a route and rendering a file. app.listen(3000);