mmmarete

MaryTest_app.js

Oct 19th, 2019
335
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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. });
Add Comment
Please, Sign In to add comment