react-native-fetch

2.0.0 • Public • Published

react-native-fetch

package version package downloads standard-readme compliant package license make a pull request Standard Travis Dependency CI Greenkeeper badge

Fetch API wrapped as a component with support for retries & timeouts

Table of Contents

Install

This project uses node and npm.

$ npm install react-native-fetch
# OR 
$ yarn add react-native-fetch

Usage

import Fetch from 'react-native-fetch'
 
export default class Home extends Component {
 
 render () {
    return (
      <View style={styles.container}>
        <Fetch
          url="https://jsonplaceholder.typicode.com/posts/1"
          retries={3}
          timeout={3000}
          onResponse={async (res) => {
            const json = await res.json()
            console.log(json)
          }}
          onError={console.error}
        />
      </View>
   )
 }
}

Properties

  • url (String) - The request url. Required.
  • onResponse (Function) - Fired when response is received.
  • onError (Function) - Fired when error occurs during request.
  • method (String) - HTTP request method. Default: 'GET'
  • body (String, body types) - HTTP request body.
  • headers (Object, Headers)- HTTP request headers to send. Default: {}

See tenacious-fetch for more information about supported props.

Contribute

  1. Fork it and create your feature branch: git checkout -b my-new-feature
  2. Commit your changes: git commit -am 'Add some feature'
  3. Push to the branch: git push origin my-new-feature
  4. Submit a pull request

License

MIT

Package Sidebar

Install

npm i react-native-fetch

Weekly Downloads

38

Version

2.0.0

License

MIT

Unpacked Size

6.91 kB

Total Files

9

Last publish

Collaborators

  • tiaanduplessis