初学nodejs——遇到的第一个问题Cannot find mo
2017-04-07 本文已影响0人
carefree0505
dos命令大全
http://jingyan.baidu.com/article/8cdccae99f3d46315513cd47.html
sublime text3配置nodejs运行环境:https://my.oschina.net/ximidao/blog/413101
1.安装好nodejs运行环境,写了一段代码:
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 runnig at http://127.0.0.1:1337');
2.控制台显示http://127.0.0.1:1337,但是浏览器始终无法访问;
3.linux命令错误如下:
module.js:340
throw err;
^
Error: Cannot find module '/home/wenjiang/hellO.js'
at Function.Module._resolveFilename (module.js:338:15)
at Function.Module._load (module.js:280:25)
at Module.runMain (module.js:492:10)
at process.startup.processNextTick.process._tickCallback (node.js:244:9)
4.我的解决方法是,把js文件放在nodejs目录下,直接将文件拖到nodejs运行器上
最后成功显示