Meteor is a modular platform for developing client/server applications in pure JavaScript.

learn more… | top users | synonyms

0
votes
0answers
5 views

Error deploying a meteor app

When deploying a meteor app, I run into this error: Errors prevented deploying: Exception while bundling application: Error: EACCES, permission denied ...
0
votes
0answers
3 views

Publishing a new set of records based on a given set of records

Looking for help writing publish/subscribe code for publishing a set of records representing the email addresses of Meteor.users. This is tricky for me because, the publish method needs to create and ...
0
votes
1answer
14 views

How to download mongo database from website hosted at origin.meteor.com

Is it possible to download the complete mongo db from an app hosted on meteor's servers in order to transfer it to Heroku, other than just to download each Collection individually?
0
votes
0answers
15 views

How can i call a meteor server from android

I come form a java background (and I'm beginner in meteor, and never used node.js), so I'm used to making calls to servlets on Android. But for meteor, what is the equivalent to servlet (or a ...
0
votes
1answer
19 views

Meteor.js apps and API's

I'm trying to work out if Meteor.js is a good fit for an app I would like to build. The app will be completely web based but will require me to implement a RESTful API that exposes some of its ...
0
votes
1answer
14 views

How to know if a user is logged in from another service

I have a php/apache service and meteor on the same server. I am using the accounts-ui package. Is there anyway to know in my php script, that a user is logged in, given the login token (session id?) ...
1
vote
1answer
29 views

Meteor + MongoDB - display list of posts with their comments count

I'm very new to Meteor, so this question might sound awkward. I'm trying to display a list of all posts Posts = new Meteor.Collection('posts'); and then in Meteor.publish('posts', ...) return ...
0
votes
1answer
18 views

my lib/collections.js loading but not being called in meteor

I'm trying this tutorial http://net.tutsplus.com/tutorials/javascript-ajax/prototyping-with-meteor/ This is my structure chat |_client | |_chat.html | |_chat.js | |_lib ...
0
votes
1answer
28 views

Are callbacks needed to ensure transaction-like behavior on insert?

Let's say I have a method which looks like: commentsInsert: (comment) -> Comments.insert comment, (err) -> throw err if err updateCommentCounts() The goal here is to avoid calling ...
1
vote
1answer
45 views

Can't add user attribute using Accounts.onCreateUser

I tried to add an attribute 'permission' to all newly created users. But it somehow doesn't work. I use this code to add the attribute Accounts.onCreateUser(function(options, user) { ...
0
votes
1answer
33 views

changing the reactive data for one template redraws the whole page

I have a page with two templates one template with a toolbar and the second with the rest of the page. The buttons in the toolbar are displayed in their enabled or disabled form depending on a ...
1
vote
1answer
28 views

Meteor use fetch or find in template helper functions?

Inside a meteor template helper function, is there any difference in performance, number of re-renders, or anything else if I return the result of a find vs a fetch? For example, the find approach: ...
0
votes
1answer
31 views

Trouble with privileges when adding custom field to a Meteor user

I'm having trouble adding custom user fields to a Meteor user object (Meteor.user). I'd like a user to have a "status" field, and I'd rather not nest it under "profile" (ie, profile.status), which I ...
0
votes
0answers
28 views

Sending coordinates to all clients

I'm really new to meteorjs, and I would like to know what is the best way to send coordinates (x,y,rotation) to all the clients that are online. I have a canvas where each user can control a ...
1
vote
2answers
24 views

How reconnect from server to client

I'am able to detect when client disconnect from a server by this code: self._session.socket.on("close", function() { console.log("client disconnected"); } But how can I try reconnect to the ...
0
votes
1answer
43 views

Meteor - how to link html element to database entry on click event?

I'm trying to figure out how to link an html picture element back to the database entry that was originally used to generate the picture link. I am using Meteor: - I have a database that contains ...
0
votes
1answer
33 views

Meteor Loading JS Files Based on Conditional Statements

This is my first time actually using Meteor, I am trying to load JS files using the Meteor Framework and I have come to a complication where I want to do the following: <script ...
0
votes
1answer
32 views

Issue with nesting helpers in meteor.js?

In my meteor.js app I have the following template: <ul class="nav nav-tabs" id="userTabs"> {{#if tabIs "editedTab"}} <li class="active"> <a ...
0
votes
1answer
57 views

Node.js Meteor create a splash page with password to enter into the app. Keeping user login separate and inside the app past the splash page

Wanting to create a splash page where a user can enter a site password that is the same for everyone. It's to hide the site while it's in preview only. Not sure why I'm not getting how to do this. ...
0
votes
3answers
74 views

Redirect route in meteorjs

So I want to create a bit.ly type site in meteor.js. I can't figure out how to redirect off page. I used backbone.js for the routes, which are working. Ideally it would grab the link from the ...
0
votes
0answers
25 views

Installing meteor launch script to home directory

When installing meteor using curl install.meteor.com | sh, it tries to install a launcher script at /usr/local/bin/meteor. However, that requires me to supply an administrator password, which I cannot ...
0
votes
2answers
41 views

Using leaflet with Meteor

Hi I'm making a simple app to show leaflet map with meteor. This simple example is not working testApp.html : <head> <title>testApp</title> </head> <body> ...
0
votes
2answers
55 views

Getting specific user data from Meteor Presence

With Meteor Presence, I can return the userId's of the usetrs that are online but. I would like to see how to get back the user object. Meteor.publish('userPresence', function() { return ...
0
votes
1answer
37 views

Meteor.js, MongoDB retreiving HTML for use in Template

I'm new to Meteor.js and MongoDB so this question might have an obvious solution that I am missing but so far my searches have turned up nothing. My first Meteor project is a very bare-bones blog. ...
1
vote
2answers
60 views

How do you check if a Meteor.Collection is synchronized?

In my application, I have an object whose fields are Meteor.Collections, some of which are not yet saved on the server. For example: var tables = {}; tables["existent"] = new ...
0
votes
1answer
51 views

Chrome FATAL crash

I have a Node.js / Meteor app that is left consistently running on a screen - it works no problem for around 20 hours, then without fail (when I'm out of the office) I get the infamous "Aw Snap" ...
-1
votes
2answers
104 views

What are (potential) disadvantages of using meteor.js?

I have just watched the meteor.js screencast [1] and I'm quite blown away by how easy building a web application with it seems, in terms of live updates and database synchronisation. However, I am not ...
0
votes
1answer
20 views

Use setTimeout for query Collection in Meteor

I defined a Collection in the model.js ,jusk like this: People = new Meteor.Collection("people"); and in main.js ,The code is: function test2(){ ...
0
votes
1answer
86 views

Should I learn node.js before starting with meteor?

I'm coming from a java background, And I recently needed an app with realtime data and push. So i'm thinking of using meteor since it seems as an easier way to use node.js. My question is do I need ...
0
votes
0answers
35 views

Hot code pushes with Meteor - on live?

I understand that meteor on Dev supports hot code pushes through file monitoring via watch.js and run.js. That works, wonderfully so in fact. I've seen, as part of the excellent Meteor Book ...
0
votes
0answers
43 views

Add extra field to Meteor accounts-ui

I have started using Meteor and the accounts-ui package. As I would like to restrict access to a certain group of people I was wondering if it was either a) able to turn up the sign up part of the ...
0
votes
1answer
31 views

Possible to evaluate an if block to more than just true or false in meteor

I have a helper function for a meteor template and would ideally like to have 3 different outcomes appear. One for a correct outcome another for an inccorect outcome and one if the user denies access ...
0
votes
1answer
29 views

Meteor template helper conditional returns false consistently

Im very new to Meteor but so far Im really enjoying coding on the platform. I have come up against a bit of hurdle and cant seem to find the correct way. I want to create a helper function that will ...
0
votes
0answers
65 views

How big application did meteor can handle

Today I just come up to meteor.com as Developer I was fascinate for it. I have lot of question in my mind. I like to how much big application it can handle. Is it secure ? It can handle Web Farm ? ...
0
votes
0answers
34 views

how to find where template variable is coming from in meteor.js

In someone elses meteor app code they have some thing like the following: <template name="null"> {{>main}} </template> <template name="main"> {{#if some_user}} ...
1
vote
1answer
35 views

call functions from separate files with Meteor

I want to create an application in Meteor, from what I understand the manual it first loads which are in subdirectories, and then follows the alphabetical order. My file structure is like this ... ...
0
votes
1answer
27 views

Meteor app hangs

Working through Discover Meteor and just getting started is causing some headaches. I ran the following: mrt create microscope mrt Which gave me the output: Stand back while Meteorite does its ...
0
votes
1answer
30 views

Meteor.http.get issue with Twitter API

I am using Meteor and the Twitter API for a project. I want to get information on a user from Twitter. I wrote a function that for example returns only the location of a user from Twitter. I believe ...
0
votes
1answer
57 views

How to get Meteor.user() to return on the server side?

in a file called /server/main.js (in order to ensure it is loaded last). console.dir(Meteor.user()); Throws: Error: Meteor.userId can only be invoked in method calls. Use this.userId in publish ...
2
votes
1answer
62 views

MeteorJS: Generating emails from templates server-side

I need to send emails from MeteorJS application and I want to generate them using html templates, not by "html-in-js" stuff. What I've tried to do: 1) Use Template.emailTemplate(data), but Template is ...
0
votes
1answer
37 views

underscorejs render different results depending on environment when passing strings with colons to it

I'm running the framework Meteor based on NodeJS. When I use underscoreJS on my server I get some strange results. On the server this code returns true _.contains(['s:s:s'], 's:s'); but in chromes ...
0
votes
2answers
64 views

#each with call to helper ignores first entry in array

I'm trying to generate a menu with handlebars, based on this array (from coffeescript): Template.moduleHeader.modules = -> [ { "moduleName": "dashboard", "linkName": "Dashboard" } { ...
0
votes
1answer
22 views

Isotope, Meteor, hasClass returning false?

if (Meteor.isClient) { Template.articles.rendered = function () { var container = $('.articles'); var antiIso = $(container.find(".article:not(.isotope-item)")); if( ...
0
votes
1answer
29 views

Meteor is not transforming my documents before publication

For security reasons, I want to add and remove properties of documents before publishing them to the client, depending on some dynamic calculations. I follow the Meteor documentation and this other SO ...
0
votes
1answer
51 views

how to delay one function until another function completes?

I am having difficulty finding the answer to this question - I suspect because I'm probably not using the right terminology. I am using Meteor. Here is what I am trying to accomplish: Function A - ...
0
votes
0answers
32 views

Jcrop in Meteor: Can't stop dragging (if bootstrap package is added)

I want to allow the user to crop and image using Jcrop. I've installed the jquery-jcrop smart package, and patched it to include the css and gif files (see my pull request on that project). Now ...
0
votes
1answer
24 views

Meteorjs & Handlebars: How can i put a function to a Value from the database?

I have a Meteor Collection where i store dates and times (my work timesheet). The times are saved as seconds. When I show them in the template all I do is a Days.find({}) and i can use it in my ...
0
votes
2answers
69 views

How to create Meteor.js App from barebone sample without “meteor create myApp”?

I have a barebone meteor app with nice folder structure: Like: myApp |- .meteor |- public |- img |- client |- css |- view |- js |- server |- helper |- ...
0
votes
1answer
52 views

Where does testing fit in meteor?

I am starting out in Meteor. Coming from Angular world, Just curious, I did not see any kind of testing (TDD) in meteor. Is there something I missed somewhere?
0
votes
1answer
35 views

Issue with “Meteor mongo” command when connected to separate Mongo Instance

When running the "parties" example locally, if I first specify my MONGO_URL to use an already existing mongo instance meteor mongo reports that meteor isn't running, even though it is and even though ...

1 2 3 4 5 35