
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
react-native-netinfo
Advanced tools
Notifies your app when the network goes offline and back online.
Notifies your app when the network connection goes online or offline.
Inspired by react-network and react-native-offline, designed with a similar API to the former for when you need a simpler and lighter package than the latter.
npm install react-native-netinfo
# or with yarn
yarn add react-native-netinfo
import { NetInfoProvider } from 'react-native-netinfo';
const App = () => (
<View>
<NetInfoProvider
onChange={({ isConnected, connectionInfo }) => {
console.log(isConnected);
console.log(connectionInfo);
}}
render={({ isConnected, connectionInfo }) =>
isConnected ? (
<React.Fragment>
<Text>Wonderful, you are connected!</Text>
<Text>Connection type: {connectionInfo.type}</Text>
<Text>
Effective connection type:{connectionInfo.effectiveType}
</Text>
</React.Fragment>
) : (
<Text>It looks like you encounter connectivity problems.</Text>
)
}
/>
</View>
);
import { NetInfoProvider } from 'react-native-netinfo';
const App = () => (
<View>
<NetInfoProvider
onChange={({ isConnected, connectionInfo }) => {
console.log(isConnected);
console.log(connectionInfo);
}}
>
{({ isConnected, connectionInfo }) =>
isConnected ? (
<React.Fragment>
<Text>Wonderful, you are connected!</Text>
<Text>Connection type: {connectionInfo.type}</Text>
<Text>
Effective connection type:{connectionInfo.effectiveType}
</Text>
</React.Fragment>
) : (
<Text>It looks like you encounter connectivity problems.</Text>
)
}
</NetInfoProvider>
</View>
);
import { NetInfoProvider } from 'react-native-netinfo';
const ConnectedComponent = ({ isConnected, connectionInfo }) =>
isConnected ? (
<React.Fragment>
<Text>Wonderful, you are connected!</Text>
<Text>Connection type: {connectionInfo.type}</Text>
<Text>Effective connection type:{connectionInfo.effectiveType}</Text>
</React.Fragment>
) : (
<Text>It looks like you encounter connectivity problems.</Text>
);
const App = () => (
<View>
<NetInfoProvider
onChange={({ isConnected, connectionInfo }) => {
console.log(isConnected);
console.log(connectionInfo);
}}
component={ConnectedComponent}
/>
</View>
);
NB: you should not set both component and render props. If you were to do this, the render prop would be ignored.
This package also exposes constants for connection info's types and effective types.
You can use them like so:
import { CONSTANTS } from 'react-native-netinfo';
const App = () => (
<View>
<Text>{CONSTANTS.CONNECTION_INFO.TYPES.WIFI}</Text>
<Text>{CONSTANTS.CONNECTION_INFO.EFFECTIVE_TYPES['4G']}</Text>
</View>
);
You can find the full list of types and effective types in the official React Native documentation about NetInfo.
FAQs
Notifies your app when the network goes offline and back online.
The npm package react-native-netinfo receives a total of 533 weekly downloads. As such, react-native-netinfo popularity was classified as not popular.
We found that react-native-netinfo 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
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.