Skip to content
This repository was archived by the owner on Dec 12, 2024. It is now read-only.

Latest commit

 

History

History
25 lines (16 loc) · 573 Bytes

README.md

File metadata and controls

25 lines (16 loc) · 573 Bytes

fast-xml2js

UPDATE: I'm no longer maintaining this project. If you would like to take it over or you know of a solid fork, please reach out!

In-place replacement for xml2js parseString. This is about 20x-30x faster and makes use of the rapidxml C++ library.

Install

Run npm install fast-xml2js

Using

Simply replace

var parseString = require('xml2js').parseString;

with

var parseString = require('fast-xml2js').parseString;

Then call it like so:

parseString('<some_xml>', function(err, result) {
    console.log(result);
});