Node.js端口和数量的限制

Lim*_*ime 3 node.js

为什么我不能在node.js中使用端口80?当我在node.js中调用listen函数时,还有什么是ports和ip地址的规则.哪些是允许的,为什么?

var http = require('http');
http.createServer(function (req, res) {

  res.writeHead(200, {'Content-Type': 'text/plain'});
  res.end('Yo');

}).listen(80, "127.0.0.1");
Run Code Online (Sandbox Code Playgroud)

谢谢!!!

Mar*_*ahn 6

端口80受到保护,您需要root才能使用它:

sudo node script.js
Run Code Online (Sandbox Code Playgroud)