gpt4 book ai didi

Meteor 找不到模块 "module"

转载 作者:行者123 更新时间:2023-12-02 03:38:40 26 4
gpt4 key购买 nike

我正在尝试安装 Spooky meteor 中的模块(这个在我的公共(public)文件夹中:app/public/node_modules)。

我已阅读答案 in this post并在 server/server.js 中添加以下代码

Meteor.startup ->
path = Npm.require 'path'
fs = Npm.require 'fs'
base = path.resolve '.'
isBundle = fs.existsSync base + '/bundle'
modulePath = base + (if isBundle then '/bundle/static' else '/public') + '/node_modules'
spooky = Npm.require modulePath + '/spooky'

但是当我运行 meteor 时,我得到:

Error: Cannot find module '/Users/mac/Documents/websites/app/.meteor/local/build/programs/server/public/node_modules/spooky'

最佳答案

您需要创建一个智能包才能在您的应用中使用 Npm 模块。或者,您可以使用 meteor-npm。

您不能将 Npm.require 单独用于非标准 npm 模块,例如 spooky。

如果你使用 meteor-npm,你可以用 meteorite 安装它:mrt add npm

然后在将模块添加到 packages.json 之后,使用 Meteor.require("spooky") 代替。您可以在这里查看更多详细信息:http://meteorhacks.com/complete-npm-integration-for-meteor.html .

官方的做法是制作你自己的智能包来包裹 npm 模块。有一个这样的包的例子:https://github.com/avital/meteor-xml2js-npm-demo

该示例使用 xml2js 作为 npm 模块,但您可以交换名称,这样它就显得怪异了。

然后你可以将这个包添加到你的 /packages 文件夹中(比如名称为 spooky),并使用 meteor add spooky 将它添加到你的 meteor 项目中

atmosphere.meteor.com 上的包有更多这方面的例子,它们几乎做同样的事情(例如条纹(https://atmosphere.meteor.com/package/stripe))。

关于Meteor 找不到模块 "module",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21565679/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com