42

一个人如何构建一个会出现的Meteor 智能包meteor list

构建Atmosphere包的文档相当完善,但构建 Meteor 包却没有。

4

5 回答 5

21

Meteor 现在支持create --package命令。

请参阅流星文档

示例(将您自己的流星开发者帐户替换为“cunneen”):

meteor create --package cunneen:foo

输出:

cunneen:foo: created in your app

结果:

包/cunneen:foo/package.js

Package.describe({
  name: 'cunneen:foo',
  version: '0.0.1',
  // Brief, one-line summary of the package.
  summary: '',
  // URL to the Git repository containing the source code for this package.
  git: '',
  // By default, Meteor will default to using README.md for documentation.
  // To avoid submitting documentation, set this field to null.
  documentation: 'README.md'
});

Package.onUse(function(api) {
  api.versionsFrom('1.0.3.1');
  api.addFiles('cunneen:foo.js');
});

Package.onTest(function(api) {
  api.use('tinytest');
  api.use('cunneen:foo');
  api.addFiles('cunneen:foo-tests.js');
});

包/cunneen:foo/foo.js(空文件)

// Write your package code here!

包/cunneen:foo/foo-tests.js

// Write your tests here!
// Here is an example.
Tinytest.add('example', function (test) {
  test.equal(true, true);
});

包/cunneen:foo/README.md(空文件)

# cunneen:foo package

对于一个好的(非常全面的)示例,请查看iron-router

于 2014-05-30T08:33:09.633 回答
14

请参阅下面的鞋匠的答案

以下是过时的信息:

查看有关流星包装系统的信息: https ://meteorhacks.com/meteor-weekly-meteor-09-rc-meteor-new-logo-underscore-in-templates.html

** 旧信息 **

有关于编写自己的包重新打包现有的 3rd 方库的更新信息。不过,API 在 1.0 之前都不会稳定,因此请准备好进行许多更改。

我已经包含了样板来帮助它同时成为一个节点和一个流星可用的库。这花了我相当长的时间来弄清楚,对建议持开放态度。

包:/lib/my.js

if (typeof Meteor === 'undefined) {
    // Not Running In Meteor (nodejs code)
    // example NPM/Node Dependencies that we'll use
    var async = require('async');
    var debug = require('debug')('my:package');
    var mongodb = require('mongodb');

    var http = require('http');  
} else {
    // Running as Meteor Package
    var async = Npm.require('async');
    var debug = Npm.require('debug')('my:package');
    var mongodb = Npm.require('mongodb');

    // node core module 'http'
    // use Npm.require to require node core modules
    // but doesnt need Npm.depends in the package.js file
    var http = Npm.require('http');
}

var constructor = function(property1) {
    this.property1 = property1; // or whatever in your constructor.
};

if (typeof Meteor === 'undefined') {
   // Export it node style
   My = exports = module.exports = constructor; // Limit scope to this nodejs file
} else {
   // Export it meteor style
   My = constructor; // Make it a global
}

// Proceed defining methods / properties as usual.
My.prototype.doStuff = function() { console.log('hello world'); }

包:/package.js

Package.describe({
  summary: "My Meteor Package"
});

/**
 * Ex: Some NPM Dependencies
 */
Npm.depends({
  'async': '0.2.9',
  'debug': '0.7.2',
  'mongodb': '1.3.18'
});

/**
 * On use we'll add files and export our tool
 */
Package.on_use(function (api) {
  /**
   * Add all the files, in the order of their dependence (eg, if A.js depends on B.js, B.js must be before A.js)
   */
  api.add_files([
    'lib/my.js' // <-- include all the necessary files in the package
    ],
    'server'); // Can be 'server', 'client' , ['client','server']

  /**
   * Only expose the My constructor, only export if meteor > 0.6.5
   */
  api.export && api.export(['My'], 'server'); // 1st arg can be array of exported constructors/objects, 2nd can be 'server', 'client', ['client', 'server']
});

流星应用程序:适当的客户端/服务器上下文中的一些文件(如 package.js 中定义的)

var my = new My('a property');
my.doStuff(); // console logs 'hello world' on the server

流星应用程序: smart.json ,将您的文件添加到包列表

{
    packages:{
        "node-my": {
            "git": "git@github.com:myAccount/node-my.git"
        }
    }
}

最后在命令行上运行mrt install得到它来安装包..唷!

于 2013-08-15T19:02:04.480 回答
13

注意:包开发目前没有记录,API 将会改变。你被警告了!

也就是说,实际上很容易上手:

首先, git clone 一份流星 repo 的副本。在 /packages 中为自己创建一个新目录。将 package.js 文件放在目录中(参见其他包的示例)。现在你有一个包裹!

接下来,从结帐处运行流星脚本(不是安装程序安装的那个)。从结帐运行时,脚本将使用结帐中的本地包目录。当您更改包中的代码时,它甚至会热重载。

查看其他包中的示例并了解 API 的作用。

编辑:在第三方软件包方面取得了很大进展。查看http://oortcloud.github.com/meteorite/https://atmosphere.meteor.com/

于 2012-04-11T22:52:02.167 回答
6

这是 2013 年 6 月 12 日的日期。这是当时的正确答案,仍然是另一种解决方案:

就像 n1mmy 说的。它是无证的,你应该使用陨石。

如果你坚持用流星创建一个包,我找到了一个很好的非官方 How-to,但你真的不应该这样做。Meteor 将在即将发布的版本中提供一种创建包的方法。

构建 Meteor 包: https ://coderwall.com/p/ork35q

我会做的方式是使用陨石

显然你有节点,我假设你有节点包管理器(npm),所以迄今为止制作流星包的最佳方法是制作陨石智能包。

npm install meteorite

Meteorite 智能包包含创建包所必需的 2 个关键文件 - package.js - smart.json

陨石文件存储在您的系统登录用户帐户下:~/.meteorite/
但符号链接到您当前创建流星应用程序的位置:project/.meteor/meteorite/

示例 package.js:

Package.describe({
   summary: "User analytics suite for meteor"
});

Package.on_use(function (api) {
   api.add_files('user_analytics.js', 'client');
});

示例 smart.json

{
   "name": "User analytics",
   "description": "User Analytics",
   "homepage": "http://yourHomepage.com",
   "author": "Eric Leroy",
   "version": "0.1",
   "git": "https://github.com/yipyo",
   "packages" : {}
}

如果你需要更多信息,你应该从列表中安装一个 mrt 包:

mrt list

然后分析你的 app/.meteor/meteorite/ 目录下的文件。

希望这会有所帮助,并继续开发未来最好的语言。

以下是一些有用的链接:

于 2013-05-28T08:23:34.080 回答
6

EventedMind上有一个关于这个主题的很好的截屏视频。

于 2013-07-10T21:33:26.117 回答