35893a4012
Signed-off-by: hellisabove <robertnedela15@gmail.com>
15 lines
254 B
JavaScript
15 lines
254 B
JavaScript
'use strict';
|
|
|
|
const express = require('express');
|
|
|
|
const PORT = 8080;
|
|
const HOST = '0.0.0.0';
|
|
|
|
const app = express();
|
|
app.get('/', (req, res) => {
|
|
res.send('Hello World');
|
|
});
|
|
|
|
app.listen(PORT, HOST);
|
|
console.log(`Running on http://${HOST}:${PORT}`);
|