如何在 Windows 上使用 Cygwin 在节点中包含咖啡脚本模块
我正在尝试在 node.js 中获取 CoffeeScript.compile 的功能。
我已经在 Windows 中的 Cygwin 上安装了节点,并使用 npm 安装了咖啡脚本。
我可以很好地使用咖啡命令,但如果我尝试,
require("coffee-script");
我会在节点中收到“找不到模块‘咖啡脚本’”。
我是否以错误的方式处理这个问题?
I'm trying to get the functionality of CoffeeScript.compile in node.js.
I've installed node on Cygwin in Windows, and installed coffee script with npm.
I can use the coffee command fine but if I try to
require("coffee-script");
I get "Cannot find module 'coffee-script'" in node.
Am I going about this the wrong way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
听起来
require
没有在 npm 的全局安装路径中查找。 从 Node REPL运行以查看正在查找哪些路径。在命令行上,运行
以查看
npm
正在安装全局库的目录(它是/usr/local/lib< /code> 在我的 Mac 上)。将
/node_modules
添加到其中,并将其添加到require.paths
中。 来一次性执行此操作您可以通过运行(更新:从 Node 0.5+ 开始不再允许修改
require.paths
。),也可以永久执行此操作通过将该行添加
到您的
~/.bashrc
文件中。It sounds like
require
isn't looking in npm's global install path. Runfrom the Node REPL to see which paths are being looked in. On the command line, run
to see the directory that
npm
is installing global libraries in (it's/usr/local/lib
on my Mac). Add/node_modules
to that, and add it torequire.paths
. You can do this on a one-time basis by running(Update: Modifying
require.paths
is no longer allowed as of Node 0.5+.)or you can do it permanently by adding the line
to your
~/.bashrc
file.您是否从不同的目录使用?如果是这样,请使用 -g 标志全局安装它。
(npm 安装咖啡脚本-g)。
Are you using from a different directory? If so, install it globally with the -g flag.
(npm install coffee-script -g).