I just found a way, but not sure whether it’s the best:
On the server side, make a method that finds a user by calling:
Meteor.methods({
"userbyUsername": function(username){
return Accounts.findUserByUsername(username);
}
})
Then on the client side, do Meteor.call of that method. Now, if i go this route, is there a good way to make the Meteor.call… synchronous? (i’m using Meteor 1.4 with React)