mirror of
https://github.com/docker/awesome-compose.git
synced 2025-04-25 18:28:07 +02:00
12 lines
238 B
JavaScript
12 lines
238 B
JavaScript
|
const express = require('express');
|
||
|
const app = express();
|
||
|
const port = 3000;
|
||
|
|
||
|
app.get('/', (req, res) => {
|
||
|
res.send('Hello World!');
|
||
|
});
|
||
|
|
||
|
app.listen(port, () => {
|
||
|
console.log(`Example app listening at http://localhost:${port}`);
|
||
|
});
|