- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试安装 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/
例如,我有一个父类Author: class Author { String name static hasMany = [ fiction: Book,
代码如下: dojo.query(subNav.navClass).forEach(function(node, index, arr){ if(dojo.style(node, 'd
我有一个带有 Id 和姓名的学生表和一个带有 Id 和 friend Id 的 Friends 表。我想加入这两个表并找到学生的 friend 。 例如,Ashley 的 friend 是 Saman
我通过互联网浏览,但仍未找到问题的答案。应该很容易: class Parent { String name Child child } 当我有一个 child 对象时,如何获得它的 paren
我正在尝试创建一个以 Firebase 作为我的后端的社交应用。现在我正面临如何(在哪里?)找到 friend 功能的问题。 我有每个用户的邮件地址。 我可以访问用户的电话也预订。 在传统的后端中,我
我主要想澄清以下几点: 1。有人告诉我,在 iOS 5 及以下版本中,如果您使用 Game Center 设置多人游戏,则“查找 Facebook 好友”(如与好友争夺战)的功能不是内置的,因此您需要
关于redis docker镜像ENTRYPOINT脚本 docker-entrypoint.sh : #!/bin/sh set -e # first arg is `-f` or `--some-
我是一名优秀的程序员,十分优秀!