Skip to content

Instantly share code, notes, and snippets.

@zontafil
Created November 8, 2015 16:34
Show Gist options
  • Select an option

  • Save zontafil/c35692c8fd7d3a1eb7da to your computer and use it in GitHub Desktop.

Select an option

Save zontafil/c35692c8fd7d3a1eb7da to your computer and use it in GitHub Desktop.
var Promise = require("bluebird");
Promise.resolve()
.then(function(){
return sails.models.user.create();
})
.catch(function(err){
console.log(err);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment