If you know more about Meteor JS visit this web site : https://crater.io
Category: meteor
Meteor JS : Velocity – Oficial Meteor Testing
Really nice video !! Perfect to start !!
Meteor JS : How to pass parameters to helpers functions?
Make you function like that and you can call from html file. ‘myFunction’:function(param) { {…} } Example placePage.html <template name=”PlacePage”> … More
Meteor JS : Nice package to create screen components range of dates. (Bootstrap datepicker)
loftsteinn:bootstrap3-daterangepicker https://atmospherejs.com/loftsteinn/bootstrap3-daterangepicker http://www.daterangepicker.com/ According to the documentation would just add the package and use it. But with me it didn’t … More
Meteor JS: Validating an email quickly
This code can be used in other technologies too. Example: mine.html <input type=”text” class=”email form-control” placeholder=”E-Mail” value=”{{currentUser.profile.details.email}}”> mine.js if ( … More
[Meteor JS ]: How to clear my meteor mongoDB?
Use : meteor reset
Meteor JS: It’s very easy to define field masks for an application Meteor JS
You need use : $(‘.your css field’).mask(‘your mask’); Example : mine.html {…} <input type=”text” class=”phone form-control” placeholder=”Your Phone” value=”{{mine.phone}}”> {…} … More
Meteor JS: Robomongo, excellent client for mongo DB
This application is easy to use, it exists for key operation systems like as Mac, Linux and Windows, it makes it … More
Meteor Js : How to access the mongodb from IntelliJ IDEA console ?
It’s really easy. You need go to terminal in your IDEA and use this command : meteor mongo
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