xml-viewer-cdata

1.3.8 • Public • Published

xml-viewer

Render and interact with XML in the browser

Example

view on requirebin

var Viewer = require('xml-viewer');
var fs = require('fs');
var xml = fs.readFileSync(__dirname + '/data.xml');
var insertCSS = require('insert-css');

var view = new Viewer(xml);
view.appendTo(document.body);

view.on('select', function(node){
  if (!node) return console.log('nothing selected');
  console.log('selected:');
  console.log(node);
  console.log(node.text());
});

insertCSS('.selected { background-color: #FFFF91 }');

Installation

$ npm install xml-viewer

License

MIT

/xml-viewer-cdata/

    Package Sidebar

    Install

    npm i xml-viewer-cdata

    Weekly Downloads

    0

    Version

    1.3.8

    License

    MIT

    Unpacked Size

    6.09 kB

    Total Files

    9

    Last publish

    Collaborators

    • quangnhattran