Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/nekobato/deno-xml-parser

XML parser ported from https://github.com/segmentio/xml-parser
https://github.com/nekobato/deno-xml-parser

Last synced: 2 days ago
JSON representation

XML parser ported from https://github.com/segmentio/xml-parser

Awesome Lists containing this project

README

        

# deno-xml-parser
[Deno](https://github.com/denoland/deno) XML parser ported from [segmentio/xml-parser](https://github.com/segmentio/xml-parser)

## Usage

``` main.ts
import parse from "https://denopkg.com/nekobato/deno-xml-parser/index.ts";

async function main() {
const node = parse("hello world");
console.log(node);
}

main();
```

## License

MIT