aboutsummaryrefslogtreecommitdiff
path: root/index.js
blob: c63972082947ab09caa8c602f9fbe1c5c4241bc5 (plain) (blame)
1
2
3
4
5
6
7
8
9
const express = require('express');

const app = express();

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

app.listen(8080, () => console.log('Server started on port 8080.'));