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
- Host: GitHub
- URL: https://github.com/lsongdev/binary-xml
- Owner: lsongdev
- License: isc
- Created: 2019-05-14T09:36:17.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-30T11:06:52.000Z (almost 7 years ago)
- Last Synced: 2025-09-06T07:52:29.590Z (7 months ago)
- Topics: binary-xml, xml-parser
- Language: JavaScript
- Homepage: https://npmjs.org/binary-xml
- Size: 5.86 KB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## binary-xml [](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).
---