Andy
Andy

Reputation: 4675

Where are the packages that we used to install with meteorite?

I was trying to get an example an working from this tutorial: http://g00glen00b.be/meteor-twitter-streaming/ Here's the Github url: https://github.com/g00glen00b/meteor-twitter-stream

It was written in Meteor 0.7 and it requires some packages so the instructions say to do this:

mrt add semantic-ui
mrt add npm
mrt add streams
mrt add momentjs

However, I have Meteor 0.9.4 and since 0.9 we're not supposed to use meteorite anymore, just add packages directly with the "meteor add #package#" command.

The problem is that none of the packages needed by this project can be found (npm, semantic-ui,streams,momentjs). I tried asking the original author of the code but he needs time to look into it.

So I thought I would ask the community. Any ideas?

Thanks for your help

Upvotes: 0

Views: 235

Answers (2)

bya
bya

Reputation: 331

locate the package here

or by typing:

meteor search semantic meteor search moment etc...

more information regarding this matter: here

Upvotes: 0

Dan Dascalescu
Dan Dascalescu

Reputation: 152066

During the package migration to 0.9, many packages were automatically migrated under the mrt user. Thus, meteor add mrt:<package> might work.

The best way to find the package you're looking for is to search for it on Atmoshpere, e.g. https://atmospherejs.com/?q=semantic, https://atmospherejs.com/?q=moment etc.

So your install instructions should become:

meteor add nooitaf:semantic-ui meteorhacks:npm arunoda:streams mrt:moment

Note that Arunoda is no longer maintaining streams, so you might want to look for an alternative.

Upvotes: 2

Related Questions