An open API service indexing awesome lists of open source software.

https://github.com/lsongdev/binary-xml

Read and Parse Binary XML in Node.js
https://github.com/lsongdev/binary-xml

binary-xml xml-parser

Last synced: 7 months ago
JSON representation

Read and Parse Binary XML in Node.js

Awesome Lists containing this project

README

          

## binary-xml [![binary-xml](https://img.shields.io/npm/v/binary-xml.svg)](https://npmjs.org/binary-xml)

> Read and Parse Binary XML in Node.js

### Installation

```bash
$ npm install binary-xml
```

### Example

```js
const BinaryXML = require('binary-xml');

const reader = new BinaryXML();

const document = reader.parse();

console.log(document);

```

### 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

### ISC

This work is licensed under the [ISC license](./LICENSE).

---