Advertisement
Guest User

MaryTest_App.Js

a guest
Oct 19th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. const express = require("express");
  2. const app = express();
  3. const port = 3000;
  4.  
  5. app.set("view engine", "ejs");
  6.  
  7. app.get("/", (req, res) => {
  8. res.render("test");
  9. });
  10.  
  11. app.listen(port, function() {
  12. console.log("Hi Gigs!");
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement