Top "Meteor" questions

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

Publishing/subscribing multiple subsets of the same server collection

EDIT: this question, some of the answers, and some of the comments, contain a lot of misinformation. See how Meteor …

collections meteor publish-subscribe
Upstart: Job failed to start

EDIT status marybaked yields marybaked stop/waiting Here is the output of /var/log/syslog : May 3 16:24:39 marybakedpdx kernel: [ 3464.189563] init: Failed …

ubuntu meteor nginx upstart
docker exec is not working in cron

I have pretty simple command which is working fine standalone as a command or bash script but not when I …

bash meteor docker cron meteor-up
Ordering of the css and js files loaded by Meteor

Is there any way of specifying an order to the automatically loaded css or js files loaded by Meteor. Searched …

meteor
Using Multiple Mongodb Databases with Meteor.js

Is it possible for 2 Meteor.Collections to be retrieving data from 2 different mongdb database servers? Dogs = Meteor.Collection('dogs') // mongodb://192.168.1.123:27017/…

javascript node.js mongodb meteor smartcollection
How to format date in meteor template

I need to display a date from database in the format 'mm-dd-yyyy'. As its saved in ISO format in mongodb …

meteor handlebars.js
Is there a simple way to export the data from a meteor deployed app?

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

mongodb meteor
How run multiple meteor servers on different ports

How can meteor run on multiple ports.For example if the meteor run on 3000 i need another meteor app run …

meteor meteor-up
How to use Meteor Upsert

Having a bit of trouble getting my Meteor upsert function working. I am fairly (200 lines of code) new, and I'm …

mongodb meteor
How to use mongodb skip() and limit() in meteor?

How to use skip() and limit() in meteor? Post.find({"user_id":user_id}).skip(0).limit(5); when I execute above …

mongodb meteor mongodb-query