A simple plugin manager for Cordova.
$ npm install https://github.com/olssonr/cordova-plugins
cordova-plugins keeps tracks of the required plugins in plugins.json. It should contain a list of the plugins you want to install for your project. cordova-plugins expects this file to exist in the projects root folder.
[
"de.appplant.cordova.plugin.hidden-statusbar-overlay@1.2.0"
]
Checks if the plugins in plugins.json are installed using cordova plugin ls
. Throws an exception if a plugin is missing.
var plugins = require('cordova-plugins');
plugins.verify
Installs all plugins in plugins.json using cordova plugin install
.
var plugins = require('cordova-plugins');
plugins.verify
If you want to use the cli it's recommend you install it globally:
$ npm install -g https://github.com/olssonr/cordova-plugins
$ cordova-plugins -h
However you can also use it with a local installation:
$ npm install
$ node_modules/cordova-plugins/index.js -h