Socket
Book a DemoInstallSign in
Socket

cordova-plugin-xml

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cordova-plugin-xml

Edit cordova plugin.xml from the command line or via API

latest
Source
npmnpm
Version
0.1.3
Version published
Weekly downloads
702
-10.8%
Maintainers
1
Weekly downloads
 
Created
Source

cordova-plugin-xml

Build Status

Edit cordova plugin.xml from the command line or via API. Based on this node package.

NPM

Install

npm install --save-dev cordova-plugin-xml

or global:

npm install -g cordova-plugin-xml

CLI Usage

cordova-plugin-xml <action> <args>

CLI examples

cordova-plugin-xml setVersion 1.2.3

lib examples

require('cordova-plugin-xml')().setVersion('123')
require('cordova-plugin-xml')('/path/to/config.xml').setVersion('123')

Use xmlpoke directly

const cordovaXml = require('cordova-plugin-xml')();
cordovaXml.withPoke(xml => xml.add("/w:widget/w:platform[@name='android']/something", xml.XmlString('<text>hey</text>')));

See node-xmlpoke for more info.

https://github.com/ragingwind/cordova-config-cli - Inspiration. However this one mutates the XML doc more

Keywords

plugin.xml

FAQs

Package last updated on 15 Mar 2019

Did you know?

Socket

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