Advertisement
lobaev

Untitled

Jul 17th, 2019
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. const express = require("express");
  2. const app = express();
  3. app.get("/", (req, res) => res.sendfile("index.html"));
  4. app.listen(8080);
  5. console.log("Server is currently running.");
  6.  
  7.  
  8.  
  9.  
  10. <!DOCTYPE html>
  11. <html lang="ru">
  12. <head>
  13. <meta charset="utf-8"/>
  14. <title>Чат</title>
  15. </head>
  16. <body>
  17. <h1>Test page.</h1>
  18. </body>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement