Replies: 1 suggested answer
-
|
There is another program using port 5000. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
{{title}}
-
I have written a simple code to create server on Nodejs. The code is as follows
const http = require('http');
const server = http.createServer((req, res) => {
res.write('Welcome to our homepage');
res.end();
});
server.listen(5000);
For this, I am getting an error saying:
Can Anyone please help with this
Beta Was this translation helpful? Give feedback.