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: 2 days ago
JSON representation
XML parser ported from https://github.com/segmentio/xml-parser
- Host: GitHub
- URL: https://github.com/nekobato/deno-xml-parser
- Owner: nekobato
- License: mit
- Created: 2018-12-29T12:35:52.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-12-15T21:30:55.000Z (almost 4 years ago)
- Last Synced: 2024-11-11T12:42:07.267Z (5 days ago)
- Language: TypeScript
- Size: 5.86 KB
- Stars: 21
- Watchers: 2
- Forks: 11
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-deno - deno-xml-parser - 从segmentio/xml-parser移植的 XML 解析器。 (Uncategorized / Uncategorized)
- awesome-deno-cn - @nekobato/deno-xml-parser - parser 移植的 Deno XML 解析器。 (基础设施 / Deno 源)
- awesome-deno - deno-xml-parser - Deno XML parser ported from segmentio/xml-parser. (Libraries)
- awesome-deno - deno-xml-parser - Deno XML parser ported from segmentio/xml-parser.![GitHub stars](https://img.shields.io/github/stars/nekobato/deno-xml-parser?style=plastic) (Modules / Online Playgrounds)
- awesome-deno - deno-xml-parser - Deno XML parser ported from segmentio/xml-parser. (Modules / XML)
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