Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
react-detect-offline-api
Advanced tools
npm install --save react-detect-offline-api
import * as React from 'react'
import ReactDetectOfflineAPI from 'react-detect-offline-api'
class Example extends React.Component {
render () {
return (
<ReactDetectOfflineAPI
apiUrl={'http://yourapiurl.com'}
checkInterval={5000}
onOnline={() => {
console.log('Online')
}}
onOffline={error => {
console.log(error && error.status ? 'Offline with error:' + error.status : 'Offline')
}}
initialStatusCallback={status => {
console.log('Initial status ', status ? 'online' : 'offline')
}}
resolveOnlineStatusFromPromise={response => response.status === 'healthy'}
render={({ online }) =>
online
?
<div>Online</div>
:
<div>Offline</div>
} />
)
}
}
Please note that if a request is blocked by CORS policy, this component will not work.
Props | Required | Type | Description |
---|---|---|---|
apiUrl | true | string | API to check |
checkInterval | true | number | null | Polling interval. If null, there will be only one check on componentDidMount |
render | false | Function | We're using Render Props to render online of offline component. See an example for more info. |
onOnline | false | Function | Called once an API becomes online and was offline |
onOffline | false | Function | Called once an API becomes offline and was online, in case API call was unsuccessful, it gets error as parameter |
resolveOnlineStatusFromPromise | false | (response: Object) => boolean | Called to detect online status from response after successful API call, otherwise every successful API call would be considered as online status |
initialStatusCallback | false | (status: boolean) => void | Calledback that returnes an initial status |
MIT | Developed by Webscope.io
FAQs
Detect whether your API is online of offline
The npm package react-detect-offline-api receives a total of 19 weekly downloads. As such, react-detect-offline-api popularity was classified as not popular.
We found that react-detect-offline-api 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.