Socket
Socket
Sign inDemoInstall

cordova-plugin-cpu-info

Package Overview
Dependencies
0
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    cordova-plugin-cpu-info

Reads the CPU and other hardware parameters of Android/iOS device


Version published
Weekly downloads
60
decreased by-25%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Cordova CPU info plugin

Reads the CPU and some other hardware parameters of Android/iOS device

Original author

Functionality of this plugin was created by Zhang Leo. This is NPM implementation of his GitHub project with few additions

Install

cordova plugin add cordova-plugin-cpu-info

Usage

Plugin creates cordova.plugins.CPUInfo object in global space. You can get the target info by call its methods

By Promise:

cordova.plugins.CPUInfo.getMacAddress().then(function (address) {
	$('.address').text(address);
});

Or with callback function:

cordova.plugins.CPUInfo.getMacAddress(function (address) {
	alert(address);
});

List of CPUInfo's methods

getMacAddress

Returns the mac address of the mobile

getCpuName

Returns the name of cpu

getCurCpuFreq

Returns the current frequency of cpu

getMinCpuFreq

Returns the min frequency of cpu

getMaxCpuFreq

Returns the max frequency of cpu

getNumberCpuCores

Returns the number of cpu cores

getRamTotalSize

Returns the total size of ram

getRamAvailableSize

Returns the available size of ram

getSDTotalSize

Returns the total size of sd

getSDAvailableSize

Returns the available size of sd

getRomTotalSize

Returns total size of rom

getRomAvailableSize

Returns available size of rom

getTimes

Returns the start time of the mobile

Keywords

FAQs

Last updated on 03 Oct 2021

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc