It’s really easy. You need go to terminal in your IDEA and use this command : meteor mongo
Tag: meteor
Meteor Js : Debug meteor js applications using IntelliJ IDEA
If you program using the Intellij IDEA you can debug your Meteor Js applications in a easy way. To do … More
Meteor Js : Scalingo host with new pricing policy from June 1st
Until now, was possible do two free deploys at no cost whatsoever. A new policy will starting from June 1, … More
Meteor Js: Colorize your console with Chalk. – Nice Package
It is often helpful define different types of logs , like as error or informative logs . What about separate … More
Meteor JS : How to use aggregate function ?
To use this mongoDB functionality you need to call directly your mongoDB. So , use this to connect in the mongoDB : … More
Meteor JS : How to connect to remote/multiple databases ?
Example : var mydatabase = new MongoInternals.RemoteCollectionDriver(“”); MyCollection = new Mongo.Collection(“collection_name”, { _driver: mydatabase }); : Link for your mongo … More
Meteor Js : Calling a REST Service
In this example I will show how to call a REST service and parse this results to JSON format. Example: … More
Meteor Js : How to configure a cron call ?
Some times we need that the application can to call a function in a time interval , to do this … More
Meteor Js : How to do to send e-mail with a Mandrill account ?
First add the package : meteor add wylio:mandrill https://atmospherejs.com/wylio/mandrill When the application startup you need do this : Meteor.startup(function() { … More
Meteor Js : How to take the user location by browser ?
Often we need to get the user’s location through the browser. I implemented in my Meteor Js application to get … More