File size: 256 Bytes
1956157
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
const express = require('express');
const app = express();
const path = require('path');

app.get('/', (req, res) => {
  res.sendFile(path.join(__dirname,  'index.html'));
});

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