Ecosyste.ms: Awesome

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

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: about 2 months ago
JSON representation

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

Lists

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