我已经从这里http://nodejs.org/安装了 node.js。在我的 windows8 机器上。在我的 server.js 文件中复制了示例服务器代码
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(1337, '127.0.0.1');
console.log('Server running at http://127.0.0.1:1337/');
然后打开 node.js 提示并写入 node c:/node/server.js 但没有任何反应。我是一个 php 开发人员,只是尝试动手,任何指南都会很有帮助。