Top "Meteor" questions

Meteor is a modular platform for developing web and mobile applications in JavaScript based on the NodeJS platform.

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 …

node.js meteor npm meteorite
Unexpected directive 'LoginComponent' imported by the module 'AppModule'. Please add a @NgModule annotation

I'm using Angular 2 and Meteor. Generating Components produces the following error: Unexpected directive 'LoginComponent' imported by the module 'AppModule'. Please …

angular meteor
How to get Meteor.Call to return value for template?

I've tried to understand this post regarding this concept, however, I'm failing to get it. I have the following simple …

callback meteor
Problems to run examples in Meteor

I'm testing Meteor examples and this is what I see when I run meteor in todos examples: Unexpected mongo exit …

mongodb meteor
Meteor: Calling an asynchronous function inside a Meteor.method and returning the result

I want to call an asynchronous function inside a Meteor method and then return the result from that function to …

javascript meteor
How does the Meteor JavaScript framework work?

I came across Meteor and while it seems exciting, I want to know how it works. I mean conventional web …

javascript node.js web-applications meteor
Meteor: Proper use of Meteor.wrapAsync on server

Background I'm trying to integrate stripe payments into my site. I need to create a stripe user using my private …

javascript meteor stripe-payments
Meteor app — resetting a deployed app's DB

Is there a simple way to reset the data from a meteor deployed app? So, for example, if I had …

mongodb meteor
Meteor how to call a method defined in Meteor.methods()?

I am assigning methods to a Meteor server like so: In bootstrap.js Meteor.startup(function () { Meteor.methods({ foo: function () { …

meteor
Publish certain information for Meteor.users and more information for Meteor.user

I want to have client-side access for a certain set of fields for ALL users while I would like to …

meteor