app.js 214 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 const express = require('express'); const app = express(); const port = 3000; app.get('/', (req, res) => { res.send('hello world!'); }); app.listen(port, () => console.log(`Server is running on port ${port}`));