Skip to content

Instantly share code, notes, and snippets.

@davinci2015
Last active April 5, 2017 09:18
Show Gist options
  • Select an option

  • Save davinci2015/785bbb319c49cf78acba08dba4de9508 to your computer and use it in GitHub Desktop.

Select an option

Save davinci2015/785bbb319c49cf78acba08dba4de9508 to your computer and use it in GitHub Desktop.
var axios = require('axios');
axios.post('/user', {
name: 'Danijel',
email: 'danijel.vincijanovic@cobeisfresh.com'
}).then(function (response) {
console.log(response);
}).catch(function (error) {
console.log(error);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment