0.0.10 • Published 5 years ago

xml2 v0.0.10

Weekly downloads
4
License
MIT
Repository
github
Last release
5 years ago

xml2 xml2

simple xml reader and parser

Installation

$ npm install xml2

Example

const XML = require('xml2');

const xml = new XML();

xml.on('open-tag', name => {
  console.log('tag name: ', name);
});

fs.createReadStream('/tmp/demo.xml').pipe(xml)

Contributing

  • Fork this Repo first
  • Clone your Repo
  • Install dependencies by $ npm install
  • Checkout a feature branch
  • Feel free to add your features
  • Make sure your features are fully tested
  • Publish your local branch, Open a pull request
  • Enjoy hacking <3

MIT

This work is licensed under the MIT license.


0.0.10

5 years ago

0.0.9

5 years ago

0.0.8

5 years ago

0.0.7

5 years ago

0.0.6

5 years ago

0.0.5

5 years ago

0.0.4

5 years ago

0.0.2

5 years ago

0.0.1

6 years ago