我是 node.js 世界的新手,我正在使用 node.js v0.8.4。我用谷歌搜索了这个问题。是的,我得到了解决方案,但作为初学者仍然无法理解。所以请帮助我......
我正在阅读 node.js 教程。在那个教程中使用了 node.js v0.1.103,他写道
require.paths.unshift(__dirname+'/vendor');
var http = require('http'),
sys = require('sys'),
nodeStatic = require('node-static/lib/node-static');
var server = http.createServer(function(request, response) {
var file = new nodeStatic.Server('./public', function() {
cache: false
});
request.addListener('end', function() {
file.server(request, response);
});
}).listen(8000);
上面的脚本对他有用。当我编写示例脚本并运行时,我收到此错误。
C:\Documents and Settings\local>node C:\xampp\htdocs\rt\node\livestats\
server.js
Error: require.paths is removed. Use node_modules folders, or the NODE_PATH envi
ronment variable instead.
at Function.Module._compile.Object.defineProperty.get (module.js:386:11)
at Object.<anonymous> (C:\xampp\htdocs\rt\node\livestats\server.js:2:8)
at Module._compile (module.js:449:26)
at Object.Module._extensions..js (module.js:467:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
at Module.runMain (module.js:492:10)
at process.startup.processNextTick.process._tickCallback (node.js:244:9)
如何使节点从客户目录加载文件以及如何解决此问题?我的操作系统是windows
谢谢......