app.js 192 B

1234567
  1. import express from "express";
  2. import createHtml from "./createHtml.js";
  3. const app = express();
  4. const html = await createHtml();
  5. app.get("/", (req, res)=>{res.send(html)});
  6. app.listen(9001);