There is a package on Atmosphere called ashkettle:ngmaterial, but it is outdated. I found somebody forked it on github and updated the dependencies it uses (Angular-Material).
Or do I need to figure out how to wrap it into a package myself and install it locally? Or can I just copy all the files to a specific place in my project?
Quick tip: keep in mind that some developers choose to publish their packages on the Meteor packaging server but keep them hidden from Atmosphere. It appears your package fits this scenario.
I always do a quick meteor search package:name before installing anything locally in case it’s simply not published to Atmosphere. Of course, I wouldn’t ever use an unpublished package for a production app, but I do occasionally use unpublished packages just to speed up prototyping.
@chadkruser another reason to clone a package into your project if it isn’t published it to customize it to your specs. There are a lot of great packages out there but sometimes they don’t do one thing that you need so forking, cloning, and editing is the code directly is a good alternative, especially if the feature you want probably wouldn’t get merged in. Plus, if it breaks you have the ability to fix it manually
$ cd packages
$ git clone git@github.com:greggman/meteor-disqus.git
$ cd ..
$ meteor add greggman:meteor-disqus
=> Errors while parsing arguments:
While adding package greggman:meteor-disqus:
error: no such package
$ meteor add package:greggman/meteor-disqus
=> Errors while parsing arguments:
While adding package package:greggman/meteor-disqus:
error: Package names can only contain lowercase ASCII alphanumerics, dash, dot, or colon, not "/".
$ meteor add package:meteor-disqus
=> Errors while parsing arguments:
While adding package package:meteor-disqus:
error: no such package
$ meteor add meteor-disqus
=> Errors while parsing arguments:
While adding package meteor-disqus:
error: no such package
$ ls packages
meteor-disqus
Hey, this is less than awesome because now I’m checking a package repo into my project repos. Every time the package repo changes, I’ll need to pull and commit in 6 other project repo’s. That’s not good.
What I really want is to fork the package on github, then have meteors build pull the package from git.
I really miss the feature to directly install packages from GitHub, too. Especially as there are a lot of broken packages on Atmosphere these days and no way to flag them and get them removed (e.g. Issue #413 or Issue #415).
as a side note, you might have to create your applications /packages folder inside your meteor project! I didn’t see it so I assumed higher level packages folder lol that and that doesn’t work… but following these instructions did!
EDIT: Ah, you just match the name of the folder that is inside packages. For example, if you have packages/what-ever with no name inside of package.js, then just meteor add what-ever works.