Hi there
Please help me with this issue where it says ge is not define
const express = require(‘express’)
const app = express()
const port = 3000
app.ge(‘/’, (req, res) => {
res.send(‘Hello World!’)
})
app.listen(port, () => {
console.log(Example app listening on port ${port}
)
})
Thank you
Hi and welcome, @carlosgarcia26201! Can you please give us your project name?
The name of the project you’re working on
This is all the code I have, why do you need my project name?
abucky0
#6
Check the line that says “app.ge”. It should be get. I thought errors showed filename:linename where it has an error.
1 Like
Thank you, that is my issue.