Comment by pahan on How to connect meteor mongo which is running on different...
you need to enter meteor mongo from a different terminal window while running your meteor app. make sure you cd to same directory.
View ArticleComment by pahan on Meteor reactive-var update one select element based on...
remove your html markup from your secondListVar put it in your template instead
View ArticleComment by pahan on Make a single variable reactive on the server with Meteor
can't you just use Meteor.status() in the meteor API? docs.meteor.com/#/full/meteor_status
View ArticleComment by pahan on Meteor model popup not working
meteor doesnt have a version 2.0 yet. Did you mean version 1.2?
View ArticleComment by pahan on Meteor app does not see local packages in second terminal
you need to stop your app running before adding/removing packages
View ArticleComment by pahan on Meteor throws error "Exception in defer callback: Error:...
did you add ecmascript meteor package?
View ArticleComment by pahan on Router.go() does not working when adding extra path
shouldn't it be Router.go("/students/add/" + studentId);?
View ArticleComment by pahan on How to invoke ballerina service in windows cmd
Did you try invoking the service with integrated "try it" tool in ballerina composer?
View ArticleComment by pahan on Ballerina Composer Try-it requests 404 but OK from...
what's the URL you cURL?
View ArticleComment by pahan on How to improve the code to return the unpaired element
This answer is incorrect. This doesnt address cases like {1, 1, 1}. @maaartinus's answer is correct.
View ArticleComment by pahan on Ballerina Lang Package Build Failed
Possible duplicate of Ballerina package build failed
View ArticleComment by pahan on Jest did not exit one second after the test run has...
can you share your code?
View ArticleAnswer by pahan for How do redirect to the Sign Up Page in Accounts Entry
your router configuration for overview route is incorrect. try thisRouter.map(function () { this.route('overview', { path : '/overview', controller : OverviewController, // Only a signed in User can...
View ArticleAnswer by pahan for Looping Futures Exception. How to fix the cause
there is a typo in your code.Posts.allow({ update: ownsDocument, remote: ownsDocument});should be changed asPosts.allow({ update: ownsDocument, remove: ownsDocument});
View ArticleAnswer by pahan for Meteor crashes with error: No version 0.9.1 of package...
open smart.json and change iron-router entry to following."iron-router": "0.8.2"run mrt update
View ArticleAnswer by pahan for How can I declare OR-Dependency in smart.json for Meteorite?
I have the same problem with one of packages I have developed. what I did was simply NOT indicating any dependancy in the smart.json file and let the user decide which package he/she wants to use, and...
View ArticleAnswer by pahan for Meteor template optimisation
yes. on the client side, not on the server side.you can use {{notifications.count}} on template.
View ArticleAnswer by pahan for Meteor: what code goes on the client side and server side?
if create a directory named client that goes only to client. if you create a directory named server that goes only to server.every thing else you code goes to client and server both. (even ifyou use...
View ArticleAnswer by pahan for Using dynamic HTML templates in Meteor emails
accepted answer uses client side code. If you are looking to build email templates client side code can be insecure.there is a package(meteor-ssr) for server side rendering templates you can use that.
View ArticleAnswer by pahan for meteor iron router with data not rendering
I think there is nothing you have presented here. You just need to publish data from users collection.more about publications
View Article