diff --git a/index.js b/index.js index 309af59..398c1bf 100644 --- a/index.js +++ b/index.js @@ -1 +1,9 @@ +const express = require('express'); + +const app = express() +app.get('/', (req, res) => { + res.send("Hello, world!") +}) + +app.listen(port) console.log('hi') \ No newline at end of file