diff --git a/js/app.js b/js/app.js new file mode 100644 index 0000000..e2664f3 --- /dev/null +++ b/js/app.js @@ -0,0 +1,11 @@ +const express = require('express'); +const app = express(); +const port = 3000; + +app.get('/', (req, res) => { + res.send('Hello from Node.js and Express!'); +}); + +app.listen(port, () => { + console.log(`Example app listening at http://localhost:${port}`); +});