Skip to content

Instantly share code, notes, and snippets.

@jboulhous
Created January 31, 2013 20:54
Show Gist options
  • Save jboulhous/4686343 to your computer and use it in GitHub Desktop.
Save jboulhous/4686343 to your computer and use it in GitHub Desktop.
Create new Meteor user
Accounts.createUser(
{email:"admin@home.me", password:"password"}
,function(e,r){
if(e){
console.error(e)
}else{
var me = Meteor.user();
console.log("created", me);
}
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment