xml-lite

0.8.1 • Public • Published

xml-lite

Maintaining XML in pure javascript (IN BOTH NODE.JS & BROWSERS) Homepage

Maintaining?

Converting

converting

Editing/Traversing

XMLLite.findChildNode(doc, query);
XMLLite.findChildNodes(doc, query);
XMLLite.findOrCreateChildNode(doc, query);
XMLLite.removeChildNode(doc, query);
XMLLite.eachChildNode(doc, query, callback);
// ...

Formatting

XMLLite.beautify(xml, indent);
XMLLite.uglify(xml, preserveComments);
XMLLite.sanitize(xml, reverse);
// ...

Actually, you can get the js object from XMLLite.xml2js(xml), do whatever you want, and convert it back to xml again with XMLLite.js2xml(obj).

Why?

  1. A reasonable need for usage in both Node.js and Browsers
  2. A more reasonable need to use native APIs(DOMParser/XMLSerializer) to speed up the maintaining process and keep the library thin

Why xml-lite?

  1. It works exactly the same in both Node.js and Browsers
  2. The browser version is supper light-weight(dist/xml-lite.js)
  3. Convenient APIs for converting between xml/js/json/DOM, and lots of helpers to maintain the data structures
  4. Super fast. it takes less than 30ms to convert an xml document with over 1,000 nodes into a js object

Install

$ npm install xml-lite --save
$ npm install xml-lite -g

Usage

In Node.js

const XMLLite = require('xml-lite');

Command line client

$ xml-lite --help

In browsers

<script src="$path/to/xml-lite/dist/xml-lite.js"> <!-- window.XMLLite is available -->

In browsers with webpack

import XMLLite from 'xml-lite/lib/index-browser';

Demo

API

JSON spec

Roadmap

Projects using xml-lite

Contributing

known issues

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
0.8.1197latest

Version History

VersionDownloads (Last 7 Days)Published
0.8.1197
0.8.00
0.7.90
0.7.80
0.7.71
0.7.60
0.7.50
0.7.40
0.7.30
0.7.20
0.7.12
0.7.00
0.6.98
0.6.80
0.6.70
0.6.60
0.6.51
0.6.42
0.6.30
0.6.20
0.6.10
0.6.00
0.5.3140
0.5.228
0.5.12
0.5.02
0.4.00
0.3.22
0.3.10
0.3.03
0.2.00
0.1.00
0.0.10
0.0.00

Package Sidebar

Install

npm i xml-lite

Weekly Downloads

388

Version

0.8.1

License

MIT

Last publish

Collaborators

  • alanwei0
  • cnfi
  • laispace
  • leungwensen
  • liuchaofeng1230
  • nekron