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?
|
Can anyone provide more details about building packages/modules for Meteor. How to build them? |
||||
|
|
|
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.
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/ Sample package.js:
Sample smart.json
If you need anymore info, you should install a mrt package from the 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/ |
||||
|
|
|
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/ |
|||||||||
|