Until now, was possible do two free deploys at no cost whatsoever. A new policy will starting from June 1, … More
Category: meteor
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
Meteor Js: Meteor Kitchen – Nice Package
Meteor Kitchen ————————————————– ————————- http://www.meteorkitchen.com/ Nice applications to generate meteor projects with login components, customer base, consultations, pagination and all … More
Meteor Js: Do you want know more about meteor js ?
Excellent blog. It talks about the meteor js concepts and principles, contains tips and best practices. It’s worth checking out. … More