Sunday, September 20, 2015

Cordova core plugin list

When creating a cordova project, it just adds the core function to bridge the javascript (cordova.js) API to the native API. And you need to add the cordova core plugins to access native operating system functionality such as the accelerometer, camera, compass, the file system and others. The core plugins are developed by the Apache Cordova team, and are updated and improved with each new version.

You can also add other third party plugins registered at http://plugins.cordova.io/npm/index.html to your project, but you need to be careful about the quality of the third party plugins, unless they are developed by yourself. So you should always check the core plugins first before looking at third party plugins or implementing a new plugin by yourself.

When searching at http://plugins.cordova.io/npm/index.html, the core plugins has a blue bar at the left as shown below

To make it easy the full core plugin list is added below:

cordova-plugin-battery-status
cordova-plugin-camera
cordova-plugin-console
cordova-plugin-contacts
cordova-plugin-device
cordova-plugin-device-motion
cordova-plugin-device-orientation
cordova-plugin-dialogs
cordova-plugin-file
cordova-plugin-file-transfer
cordova-plugin-geolocation
cordova-plugin-globalization
cordova-plugin-inappbrowser
cordova-plugin-media
cordova-plugin-media-capture
cordova-plugin-network-information
cordova-plugin-splashscreen
cordova-plugin-statusbar
cordova-plugin-vibration
cordova-plugin-whitelist  

1 comment: