2

我正在尝试在我的 Windows 机器上设置 Doctorjs,以使用 vim 的标签栏,但我认为这可能是一个 node.js 问题,而不是其他任何问题。我正在关注本教程。即使在我设置了 NODE_PATH 之后,我仍然收到一个错误,声称需要设置它。可能出了什么问题?

这是我的win7机器上的终端日志:

C:\Windows\system32>set NODE_PATH=C:\Users\JG\Desktop\new\doctorjs\lib\jsctags

C:\Windows\system32>node.exe C:\Users\JG\Desktop\new\doctorjs\bin\jsctags.js -h
'node.exe' is not recognized as an internal or external command,
operable program or batch file.

C:\Windows\system32>cd c:\Users\JG\Desktop\new\doctorjs

c:\Users\JG\Desktop\new\doctorjs>node.exe C:\Users\JG\Desktop\new\doctorjs\bin\j
sctags.js -h

node.js:201
        throw e; // process.nextTick error, or 'error' event on first tick
              ^
Error: require.paths is removed. Use node_modules folders, or the NODE_PATH envi
ronment variable instead.
    at Function.<anonymous> (module.js:376:11)
    at Object.<anonymous> (C:\Users\JG\Desktop\new\doctorjs\bin\jsctags.js:41:8)

    at Module._compile (module.js:432:26)
    at Object..js (module.js:450:10)
    at Module.load (module.js:351:31)
    at Function._load (module.js:310:12)
    at Array.0 (module.js:470:10)
    at EventEmitter._tickCallback (node.js:192:40)

c:\Users\JG\Desktop\new\doctorjs>
4

1 回答 1

3

在 node.js 0.6.x 中require.paths已删除。如果我记得的话,它从 0.2.x 开始就被弃用了。所以问题不在于缺少 NODE_PATH 环境变量,而是您正在运行的包/应用程序与节点 0.6.x 不兼容。正常的解决方案是在 node.js 0.4.12 中运行这个应用程序。不幸的是,Windows 没有受支持的 0.4.x 版本。最好的办法是重写应用程序,使其require.paths不再使用。

此外:不要像 一样启动应用程序node.exe C:\Full\Path\Folder,因为工作目录将是C:\. 因此,请执行以下操作:

C:\Full\Path\Folder> C:\node.js\bin\node.exe Folder.
于 2011-12-05T13:18:27.160 回答