
Product
Socket for Jira Is Now Available
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.
@capacitor/network
Advanced tools
The Network API provides network and connectivity information.
npm install @capacitor/network
npx cap sync
import { Network } from '@capacitor/network';
Network.addListener('networkStatusChange', status => {
console.log('Network status changed', status);
});
const logCurrentNetworkStatus = async () => {
const status = await Network.getStatus();
console.log('Network status:', status);
};
getStatus() => Promise<ConnectionStatus>
Query the current status of the network connection.
Returns: Promise<ConnectionStatus>
Since: 1.0.0
addListener(eventName: 'networkStatusChange', listenerFunc: ConnectionStatusChangeListener) => Promise<PluginListenerHandle>
Listen for changes in the network connection.
| Param | Type |
|---|---|
eventName | 'networkStatusChange' |
listenerFunc | ConnectionStatusChangeListener |
Returns: Promise<PluginListenerHandle>
Since: 1.0.0
removeAllListeners() => Promise<void>
Remove all listeners (including the network status changes) for this plugin.
Since: 1.0.0
Represents the state and type of the network connection.
| Prop | Type | Description | Since |
|---|---|---|---|
connected | boolean | Whether there is an active connection or not. | 1.0.0 |
connectionType | ConnectionType | The type of network connection currently in use. If there is no active network connection, connectionType will be 'none'. | 1.0.0 |
| Prop | Type |
|---|---|
remove | () => Promise<void> |
The type of network connection that a device might have.
'wifi' | 'cellular' | 'none' | 'unknown'
Callback to receive the status change notifications.
(status: ConnectionStatus): void
FAQs
The Network API provides network and connectivity information.
We found that @capacitor/network demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 18 open source maintainers 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.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.