aboutsummaryrefslogtreecommitdiffstats
path: root/index.js
blob: ad87f7642c7f6fc87523248fbee930e56e7eb6b6 (plain)
1
2
3
4
5
6
7
const express = require('express');

const app = express();

const PORT = process.env.PORT || 3000;

app.listen(PORT, () => console.log(`Server started on port ${PORT}`));