georgiev955

Untitled

Oct 12th, 2023
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. const express = require('express');
  2.  
  3. const app = express();
  4.  
  5. app.get('/', (req, res) => {
  6. res.send(`
  7. <h1>Home Page</h1>
  8.  
  9. <ul>
  10. <li><a href="/">Home</a></li>
  11. <li><a href="/about">About</a></li>
  12. </ul>
  13. `);
  14. });
  15.  
  16. app.get('/about', (req, res) => {
  17. res.send('About us');
  18. })
  19.  
  20. app.listen(3000);
  21. console.log('Server is listening on port 3000...');
  22.  
Advertisement
Add Comment
Please, Sign In to add comment