
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
react-native-fetch
Advanced tools
Fetch API wrapped as a component with support for retries & timeouts
Fetch API wrapped as a component with support for retries & timeouts
This project uses node and npm.
$ npm install react-native-fetch
$ # OR
$ yarn add react-native-fetch
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>
)
}
}
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.
MIT
FAQs
Fetch API wrapped as a component with support for retries & timeouts
We found that react-native-fetch demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.