Top "Meteor" questions

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

How do I access Meteor's MongoDB from another client, while Meteor is running?

I would like to access Meteor's MongoDB from a Python client, while Meteor is running. I can't start a mongod …

python mongodb meteor
Meteor JS: use external script

There are some services (like FB like or AddThis) that provide a snippet of code. It looks like <div …

javascript meteor
Adding more fields to Meteor user accounts

I am using mrt add accounts-ui-bootstrap-dropdown and mrt add accounts-password to get a simple login page running on my app. …

meteor user-accounts
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 …

meteor meteorite iron-router
How to style Ionic input type file as a Button

I want to style a ionic file chooser button. <input type="file" id="myFileInput"> But Ionic don't have …

javascript meteor input ionic-framework input-type-file
process.env.PWD vs process.cwd()

I am using Meteor JS...and within my Meteor app I am using node to query the contents of different …

javascript node.js meteor fs
Importing a JSON file in Meteor

I have a data.json file that I would like to load and that I have placed in the lib/ …

meteor
How to use Meteor methods inside of a template helper

How can I define a Meteor method which is also callable in a template helper? I have these two files: …

javascript meteor
How can I get the index of an array in a Meteor template each loop?

Say I have an object, someObject: { foo: "apple", myArray: ["abc", "def"] } And a template helper that looks like this (and …

javascript meteor spacebars
How to get the query parameters in Iron-router?

I am trying to get the query parameters in the url. There doesn't seem to be an easy way to …

meteor iron-router