Answer the question
In order to leave comments, you need to log in
In what languages, how can I open a port on a node by creating a network application?
In a node, you can create a server application on a specific port in a couple of lines
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/html'});
res.write(req.url);
res.end();
}).listen(8080);
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question