gpt4 book ai didi

meteor - 如何构建 Meteor 智能包

转载 作者:行者123 更新时间:2023-12-03 07:04:17 24 4
gpt4 key购买 nike

如何构建一个 Meteor smart package会出现在 meteor 列表中吗?

建筑物Atmosphere包裹相当好documented ,但构建 Meteor 包则不然。

最佳答案

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

参见the meteor docs .

示例(用您自己的 meteor developer account 替换“cunneen”):

meteor create --package cunneen:foo

输出:

cunneen:foo:在您的应用中创建

结果:

packages/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');
});

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

// Write your package code here!

packages/cunneen:foo/foo-tests.js

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

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

# cunneen:foo package

有关一个很好的(非常全面)示例,请查看 iron-router .

关于meteor - 如何构建 Meteor 智能包,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10114526/

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