Top "Meteor" questions

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

How can Meteor apps work offline?

This is useful when: the server is down and the client can't connect for real-time sync there is no Internet …

offline meteor
"Meteor code must always run within a Fiber" when calling Collection.insert on server

I have the following code in server/statusboard.js; var require = __meteor_bootstrap__.require, request = require("request") function getServices(services) { …

javascript meteor node-fibers
Accessing parent context in Meteor templates and template helpers

I'm running into a template context situation that I'm having a hard time finding a way around. Here's the template …

meteor
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(…

meteor meteorite handlebars.js iron-router
Meteor: Access Template Helper (or variable) from another helper

How can I reference a template helper from another one? For example... Template.XXX.helpers({ reusableHelper: function() { return this.field1 * 25 / 100; //…

meteor meteor-blaze spacebars meteor-helper
Meteor and handlebars #each to iterate over object

I want to use handlebars #each with an object that's not an array. How do I do that? I need …

javascript meteor handlebars.js
Meteor support developing on Windows

Does Meteor support developing on Windows? I did not see any downloads or mention of Windows in the docs. The "…

node.js meteor
How to build a Meteor smart package

How can one build a Meteor smart package that would show up in meteor list? Building Atmosphere packages is reasonably …

meteor package
Scale fabric.js canvas objects

I have a fabric.js canvas on my page, that I'd like to be responsive. My code works for scaling …

javascript canvas meteor html5-canvas fabricjs
handlebars.js “each” loop inside another “each” loop 3

Suppose I want to build a dynamic table. How do I run each inside each. If the only varible that …

meteor handlebars.js