1.3.8 • Published 2 years ago

xml-viewer-cdata v1.3.8

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

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