开发者

Executing javascript code with node.js

开发者 https://www.devze.com 2023-02-07 13:32 出处:网络
I\'m trying to execute a javascript code with node.js, and 开发者_开发问答I get always two errors saying :

I'm trying to execute a javascript code with node.js, and 开发者_开发问答I get always two errors saying :

.port 1 is not active

.port 2 is not active

This my javascript code :

var http = require('http');
http.createServer(function (req, res) {
    res.writeHead(200, {'Content-Type': 'text/plain'});
    res.end('Hello World\n');
}).listen(8124, "127.0.0.1");
console.log('Server running at http://127.0.0.1:8124/');

Any ideas ?


Do you have anything else listening on 8124 already?

netstat -an|grep :8124
0

精彩评论

暂无评论...
验证码 换一张
取 消