Synopsis cordova-cli config [options] The config command can be used to set, get, delete, edit, and list global cordova options. Options --set ... Sets the config key to the value. If value is omitted, then it sets it to "true". --get ........... Echo the config value to stdout. --delete ........ Deletes the key from all configuration files. --edit ................ Opens the config file in an editor. --ls .................. Lists contents of config file. Syntax cordova-cli config set ....... cordova config set autosave true cordova-cli config get ............... cordova config get autosave cordova-cli config delete ............ cordova config delete autosave cordova-cli config edit .................... cordova config edit cordova-cli config ls ...................... cordova config ls Options autosave ...................... default setting = true Allows the user to set save to true or false when adding platforms or plugins. When false, platforms/plugins are not saved to `config.xml` and `package.json`. fetch .......................... default setting = true Allows the user to set fetch to true or false when adding platforms or plugins. When false, platforms/plugins are fetched. It does not install to the project using `npm install` and it does not store it in the apps `node_modules`directory. It uses the fetching logic of previous cordova versions. browserify ...................... default setting = false Allows the user to use the browserify module to bundle the JavaScript files of the included plugins at build time versus our traditional run time loading of those files. Examples cordova config set autosave false cordova config set browserify true cordova config set fetch false