我已经安装了node和nodejs,并且我使用最简单的example.js进行测试,但是当我键入node example.js时,没有任何反应。有什么问题吗?
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(1337);
console.log('Server running at localhost:1337/');
答案 0 :(得分:0)
如上所述here,尝试删除您提到的冲突节点安装(node和nodejs),然后安装其中一个: nodejs
sudo apt-get --purge remove node
sudo apt-get --purge remove nodejs
sudo apt-get install nodejs
# Confirm it worked
node --version # v0.10.13
ls -la `which node` # ... /usr/bin/node -> /etc/alternatives/node