1.0.1 • Published 6 years ago

cordova-plugin-netto v1.0.1

Weekly downloads
6
License
MIT
Repository
github
Last release
6 years ago

🌙🦉 Cordova Netto Plugin

Cordova plugin for keeping a watchful eye on network usage stats.

Purpose

Netto returns an app's data usage (in bytes) since it was first launched. Data usage statistics will be reset when the app is killed.

Installation

cordova plugin add cordova-netto-plugin

Supported Platforms

  • Android
  • iOS

Properties

  • Netto.traffic

Example

Netto.traffic(
    function(traffic){
        // traffic returns: 
        // {
        // receivedBytes: 103424, 
        // transmittedBytes: 6144, 
        // totalBytes: 109568
        // }
    },
    function(error){
        console.error(error); // Returns error
    }
);