Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can anyone provide more details about building packages/modules for Meteor.

How to build them?
How to package them?
How to deploy them so that meteor list finds them?

share|improve this question

2 Answers

up vote 2 down vote accepted

Like n1mmy said. It's undocumented, and you should use meteorite.

If you insist on creating a package with meteor, I found a good unofficial How-to, but you really shouldn't do this. Meteor will be coming out with a way to create packages in an upcoming release.

Bulding a Meteor package: https://coderwall.com/p/ork35q

The way I would do it is with Meteorite

Obviously you have node, and I assume you have node package manager (npm), so your best way to make a meteor package to date, is to make a meteorite smart package.

npm install meteorite

Meteorite smart packages contain 2 key files essential for package creation - package.js - smart.json

Meteorite files are stored under your system logged in user account: ~/.meteorite/
but are symlinked to your current where you created a meteor app: project/.meteor/meteorite/

Sample package.js:

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

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

Sample smart.json

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

If you need anymore info, you should install a mrt package from the list:

mrt list

then analyze the files under your app/.meteor/meteorite/ directory.

Hope this helps, and keep developing the best language of the future.

Here are some helpful links:

http://www.eventedmind.com/ - Exceptional tutorials explaining Meteor's core concepts

https://atmosphere.meteor.com/wtf/package

https://github.com/oortcloud/unofficial-meteor-faq

http://net.tutsplus.com/tutorials/javascript-ajax/prototyping-with-meteor/

share|improve this answer

NOTE: Package development is currently undocumented, and the API will change. You've been warned!

That said, it's actually pretty easy to get started:

First, git clone a copy of the meteor repo. Make yourself a new directory in /packages. Put a package.js file in the directory (see other packages for examples). Now you've got a package!

Next, run the meteor script from your checkout (not the one installed by the installer). When run from the checkout, the script will use the local packages directory in the checkout. It will even hot-reload when you change code in your package.

Have a look through the other packages for examples and to get an idea what the API does.

EDIT: much progress has been made in terms of third-party packages. Check out http://oortcloud.github.com/meteorite/ and https://atmosphere.meteor.com/

share|improve this answer
That'd be great to have a npm like tool ;) I'm looking for a way to import momentjs.com in my Meteor project. What is the best solution to have access to this library client/server side? Thank for your amazing work! – LarZuK Apr 11 '12 at 23:04
Amazing!! app_root/lib/moment.js and... that's sit?? just... amazing... I didn't find it in doc, no? – LarZuK Apr 11 '12 at 23:13
1  
@n1mmy I cloned the repo from github, went to the cloned meteor folder, downloaded a custom jquery build and placed the resulting js file in a new subfolder inside packages. I copy/pasted a package.js file over from the existing jquerypackage and edited it's content to reflect the name of my custom jquerybuild. Next I went up to the root of my cloned meteorfolder and ran ./meteor and I got Installed dependency kit v0.1.4 in dev_bundle.. So far so good. But running meteor list does not show my new package. Thoughts? – Webdevotion May 3 '12 at 7:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.