1.0.1 • Published 6 years ago

axios-relize v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

axios-relize

Self-realizing an axios

flow chart

axios-flor-chart

Installing

Using npm:

npm install axios

Using bower:

bower install axios

Using yarn:

yarn add axios

how to use

// Send a POST request
axios({
  method: 'post',
  url: '/user/12345',
  data: {
    firstName: 'franki',
    lastName: 'jogh'
  }
});
// GET a request
axios({
  method: 'get',
  url: 'http://sofun',
})
  .then(function (response) {
    console.log(response)
  });

license

MIT