Questions tagged [meteorite]

Meteorite is a Meteor version manager and package manager. It provides an easy way to run different versions of meteor, use non-core packages, and to install packages from the Atmosphere package repository. Meteorite provides the mrt command that wraps the meteor command, and should be used in its place.

Meteorite is a version manager and package manager. It provides an easy way to run different versions of meteor, use non-core packages, and to install packages from the Atmosphere package repository. Meteorite provides the mrt command that wraps the meteor command, and should be used in its place.

Meteor 0.9 brings the full package system in the meteor command. The mrt command is not needed anymore for tasks like add or remove. For more information see the Meteor blog post


Documentation :

475 questions
78
votes
11 answers

Meteor: How to list the installed packages

I'm starting with Meteor, and I'd like to know how to list the installed packages. meteor list would only list the available packages in the registry. Edit: Since meteor 0.9.0.1 meteor list lists the available packages in the project.
Jonathan de M.
  • 9,721
  • 8
  • 47
  • 72
46
votes
6 answers

How do you check which version of Meteor you are running?

I am having a similar problem as described here: meteor > error: no such package: 'accounts-urls' To fix this issue it looks like I have to downgrade my version of Meteorite to get 'accounts-ui-bootstrap-dropdown' to work. But first I want to check…
Nearpoint
  • 7,202
  • 13
  • 46
  • 74
39
votes
5 answers

How do I add console.log() JavaScript logic inside of a Handlebars template?

I'm in the process of building a new Meteor app and I can't figure out how to add JavaScript logic with Handlebars to run a console.log() before my each loop. In backbone I would just do, <% console.log(data); %> to test that the data was being…
Jason Biondo
  • 693
  • 1
  • 12
  • 19
29
votes
3 answers

How to serve static content (images, fonts etc.) using iron router

I just started working with iron router on meteor. I need to show an image on homepage. I was able to configure route for 'home' using the client side routing. For static files I tried to google and found that adding a server side route might help.…
Goje87
  • 2,839
  • 7
  • 28
  • 48
29
votes
3 answers

How to pass a parameter to pathFor in Handlebars for Iron-Router with Meteorite?

I have a simple route with a parameter: this.route('article', { path: '/article/:_id', data: function() { return Articles.findOne(this.params._id); } }); I would like to have use the pathFor handlebars helper here with the…
Chet
  • 18,421
  • 15
  • 69
  • 113
23
votes
3 answers

Where are meteor's installed packages located?

I installed twitter bootstrap using meteor add bootstrap. I want to look at the bootstrap css files, but I can't find them anywhere. I have looked in my application folder, and I've looked at many folders in the .meteor folder. In…
Azeirah
  • 6,176
  • 6
  • 25
  • 44
19
votes
4 answers

How to fork an existing Meteorite package in a clean way?

I'm trying to figure out the best/cleanest way to fork an existing package on Atmosphere within a project. I encountered a few occasions where an existing package needed some modifications and I was forced to fork it. As far as I can tell, the…
konrad
  • 3,340
  • 1
  • 27
  • 26
17
votes
4 answers

How to prevent auto login after create user

I add accounts-password and accounts-base packages in Meteor When I create user like this: Accounts.createUser({username: username, password : password}, function(err){ if (err) { // Inform the user that account creation…
L.T
  • 2,539
  • 3
  • 20
  • 30
16
votes
3 answers

What's the difference between Meteor and Meteorite (mrt)?

For example, some sites tell me to use mrt add accounts-ui (using Meteorite, right?) and others say meteor add accounts-ui. From what I understand, Meteorite is just a version control / package manager. Is this correct? What is the difference…
Lindsayts
  • 327
  • 2
  • 10
15
votes
3 answers

is there a canonical meteor.js forms package?

Is there a forms package that is considered canonical or one that is likely to be similar to whatever would eventually end up in core? In my searching I came up with two main contenders, based on activity, throughouness, and documentation (but there…
funkyeah
  • 3,074
  • 5
  • 28
  • 47
14
votes
3 answers

Is Meteorite still relevant now that Meteor 0.6.0+ supports npm packages?

Since Meteor 0.6.0+ supports npm packages directly, is Meteorite still relevant, and would there be any advantage/disadvantage to using it?
0x6A75616E
  • 4,696
  • 2
  • 33
  • 57
13
votes
3 answers

Speed up Auto-reload in Meteor.js

After saving a file with new changes in Meteor.js, the server will restart and the browser will window reload. Question: Sometimes it takes longer than usual to reload after saving the file, and this appears to be random. Is there a way to trigger…
Nyxynyx
  • 61,411
  • 155
  • 482
  • 830
12
votes
2 answers

How come my Meteor app with accounts package is not sending a verification email?

I am making a meteor app and I have the mrt accounts-password package added as well as mrt accounts-ui-bootstrap-dropdown. I have added the loginbuttons so users can create an account and that works just fine. I am using all defaults. On the…
Nearpoint
  • 7,202
  • 13
  • 46
  • 74
10
votes
6 answers

Meteor's accounts-ui-bootstrap-3 {{loginButtons}} not displaying

After installing bootstrap-3 and accounts-ui-bootstrap-3, the ui-accounts login widget did not appear when {{ loginButtons }} is used. Instead a
is found in its place but no widget is visible. Are there additional steps that is missing for the…
Nyxynyx
  • 61,411
  • 155
  • 482
  • 830
10
votes
4 answers

How to access client IP address in Meteor?

This seems like a very basic question that doesn't have an elegant solution/answer out there. How can I access the client (remote) IP address from (1) the server or (2) the client?
Chet
  • 18,421
  • 15
  • 69
  • 113
1
2 3
31 32