Spaces:
Runtime error
Runtime error
File size: 275 Bytes
19994df 52f6c9e 19994df 52f6c9e 19994df | 1 2 3 4 5 6 7 8 9 10 11 | const express = require('express');
const app = express();
const port = process.env.PORT || 3000;
app.get('/', (req, res) => {
res.send('Hello, Node.js app running in Docker!');
});
app.listen(port, () => {
console.log(`App is running on http://localhost:${port}`);
}); |