如何在 Windows 上使用 Cygwin 在节点中包含咖啡脚本模块

发布于 2024-11-25 13:41:36 字数 243 浏览 2 评论 0原文

我正在尝试在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

单身狗的梦 2024-12-02 13:41:36

听起来 require 没有在 npm 的全局安装路径中查找。 从 Node REPL运行

require.paths

以查看正在查找哪些路径。在命令行上,运行

npm ls -g

以查看 npm 正在安装全局库的目录(它是 /usr/local/lib< /code> 在我的 Mac 上)。将 /node_modules 添加到其中,并将其添加到 require.paths 中。 来一次性执行此操作

require.paths.shift('/usr/local/lib/node_modules');

您可以通过运行(更新:从 Node 0.5+ 开始不再允许修改 require.paths。)

,也可以永久执行此操作通过将该行添加

export NODE_PATH=/usr/local/lib/node_modules

到您的 ~/.bashrc 文件中。

It sounds like require isn't looking in npm's global install path. Run

require.paths

from the Node REPL to see which paths are being looked in. On the command line, run

npm ls -g

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 to require.paths. You can do this on a one-time basis by running

require.paths.shift('/usr/local/lib/node_modules');

(Update: Modifying require.paths is no longer allowed as of Node 0.5+.)

or you can do it permanently by adding the line

export NODE_PATH=/usr/local/lib/node_modules

to your ~/.bashrc file.

未央 2024-12-02 13:41:36

您是否从不同的目录使用?如果是这样,请使用 -g 标志全局安装它。
(npm 安装咖啡脚本-g)。

Are you using from a different directory? If so, install it globally with the -g flag.
(npm install coffee-script -g).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文