Introduction to Express
Created by Codedamn about a year ago
0
No description provided
2 Comments
1
To run your own code on your own local environment be it Linux/mac/windows, use this - >
const port = 1111 <any port number you want>
app.listen(port, ()=>{
console.log(To excess the server, got to http://localhost:${port}
)
})
show more answers
Your comment