Загрузка данных


  <body>
    <a href="/">home page</a>
  </body>
</html>
`;

app.get('/', (req, res) => {
  res.send(MAIN_PAGE);
});

app.get('/new', (req, res) => {
  res.send(NEW_PAGE);
});

app.listen(port, () => {
  console.log("Server is running");
});