2
0
mirror of https://github.com/tenrok/axios.git synced 2026-05-27 14:47:43 +03:00

Updating README

This commit is contained in:
Matt Zabriskie
2014-08-29 16:40:02 -06:00
parent 9608790380
commit a3e5e7d2c1
+19 -19
View File
@@ -10,6 +10,24 @@ Promise based XHR library
- Specifying HTTP request headers
- Automatic transforms for JSON data
## Installing
Using bower:
```bash
$ bower install axios
```
Using npm:
```bash
$ npm install axios
```
## Compatability
Tested to work with >=IE8, Chrome, Firefox, Safari, and Opera.
## Example
Performing a `GET` request
@@ -143,7 +161,7 @@ When using the alias methods `url`, `method`, and `data` properties don't need t
For either `success` or `error`, the following response will be provided.
```
```js
axios.get('/user/12345')
.success(function (
// `data` is the response that was provided by the server
@@ -163,24 +181,6 @@ axios.get('/user/12345')
}
```
## Installing
Using bower:
```bash
$ bower install axios
```
Using npm:
```bash
$ npm install axios
```
## Compatability
Tested to work with >=IE8, Chrome, Firefox, Safari, and Opera.
## Thanks
axios is heavily inspired by Angular's $http service.