Browse Source

Update README.md

wkh237 8 years ago
parent
commit
0b823ff445
1 changed files with 2 additions and 6 deletions
  1. 2
    6
      README.md

+ 2
- 6
README.md View File

@@ -10,16 +10,12 @@ See [[fetch] Does fetch with blob() marshal data across the bridge?](https://git
10 10
 
11 11
 **Pre v0.5.0 Users**
12 12
 
13
-This update is `backward-compatible` generally you don't have to change existing code unless you're going to use new APIs.
14
-
15
-In latest version (v0.5.0), new APIs can either `upload` or `download` files simply using a file path. It's much more memory efficent in some use case. We've also introduced `fs` APIs for access files, and `file stream` API that helps you read/write files (especially for **large ones**), see [Examples](#user-content-usage) bellow.
16
-
17
-This module implements native methods, supports both Android (uses awesome native library  [AsyncHttpClient](https://github.com/AsyncHttpClient/async-http-client])) and IOS.
13
+This update is `backward-compatible` generally you don't have to change existing code unless you're going to use new APIs. In latest version (v0.5.0), new APIs can either `upload` or `download` files simply using a file path. It's much more memory efficent in some use case. We've also introduced `fs` APIs for access files, and `file stream` API that helps you read/write files (especially for **large ones**), see [Examples](#user-content-usage) bellow. This module implements native methods, supports both Android (uses awesome native library  [AsyncHttpClient](https://github.com/AsyncHttpClient/async-http-client])) and IOS.
18 14
 
19 15
 ## TOC
20 16
 
21 17
 * [Installation](#user-content-installation)
22
-* [Examples](#user-content-usage)
18
+* [Usages](#user-content-usage)
23 19
  * [Download file](#user-content-download-example--fetch-files-that-needs-authorization-token)
24 20
  * [Upload file](#user-content-upload-example--dropbox-files-upload-api)
25 21
  * [Multipart/form upload](#user-content-multipartform-data-example--post-form-data-with-file-and-data)