XML to JSON Library Comparison

Example XML tXml tXml Simplified xml-js xml-js Compact fast-xml-parser w/o ignoreAttributes xml2js

tXml

[
  {
    "tagName": "?xml",
    "attributes": {
      "version": "1.0"
    },
    "children": []
  },
  {
    "tagName": "?xml-stylesheet",
    "attributes": {
      "href": "catalog.xsl",
      "type": "text/xsl"
    },
    "children": []
  },
  "!DOCTYPE catalog SYSTEM \"catalog.dtd\"",
  {
    "tagName": "catalog",
    "attributes": {},
    "children": [
      {
        "tagName": "product",
        "attributes": {
          "description": "Cardigan Sweater",
          "product_image": "cardigan.jpg"
        },
        "children": [
          {
            "tagName": "catalog_item",
            "attributes": {
              "gender": "Men's"
            },
            "children": [
              {
                "tagName": "item_number",
                "attributes": {},
                "children": [
                  "QWZ5671"
                ]
              },
              {
                "tagName": "price",
                "attributes": {},
                "children": [
                  "39.95"
                ]
              },
              {
                "tagName": "size",
                "attributes": {
                  "description": "Medium"
                },
                "children": [
                  {
                    "tagName": "color_swatch",
                    "attributes": {
                      "image": "red_cardigan.jpg"
                    },
                    "children": [
                      "Red"
                    ]
                  },
                  {
                    "tagName": "color_swatch",
                    "attributes": {
                      "image": "burgundy_cardigan.jpg"
                    },
                    "children": [
                      "Burgundy"
                    ]
                  }
                ]
              },
              {
                "tagName": "size",
                "attributes": {
                  "description": "Large"
                },
                "children": [
                  {
                    "tagName": "color_swatch",
                    "attributes": {
                      "image": "red_cardigan.jpg"
                    },
                    "children": [
                      "Red"
                    ]
                  },
                  {
                    "tagName": "color_swatch",
                    "attributes": {
                      "image": "burgundy_cardigan.jpg"
                    },
                    "children": [
                      "Burgundy"
                    ]
                  }
                ]
              }
            ]
          },
          {
            "tagName": "catalog_item",
            "attributes": {
              "gender": "Women's"
            },
            "children": [
              {
                "tagName": "item_number",
                "attributes": {},
                "children": [
                  "RRX9856"
                ]
              },
              {
                "tagName": "price",
                "attributes": {},
                "children": [
                  "42.50"
                ]
              },
              {
                "tagName": "size",
                "attributes": {
                  "description": "Small"
                },
                "children": [
                  {
                    "tagName": "color_swatch",
                    "attributes": {
                      "image": "red_cardigan.jpg"
                    },
                    "children": [
                      "Red"
                    ]
                  },
                  {
                    "tagName": "color_swatch",
                    "attributes": {
                      "image": "navy_cardigan.jpg"
                    },
                    "children": [
                      "Navy"
                    ]
                  },
                  {
                    "tagName": "color_swatch",
                    "attributes": {
                      "image": "burgundy_cardigan.jpg"
                    },
                    "children": [
                      "Burgundy"
                    ]
                  }
                ]
              },
              {
                "tagName": "size",
                "attributes": {
                  "description": "Medium"
                },
                "children": [
                  {
                    "tagName": "color_swatch",
                    "attributes": {
                      "image": "red_cardigan.jpg"
                    },
                    "children": [
                      "Red"
                    ]
                  },
                  {
                    "tagName": "color_swatch",
                    "attributes": {
                      "image": "navy_cardigan.jpg"
                    },
                    "children": [
                      "Navy"
                    ]
                  },
                  {
                    "tagName": "color_swatch",
                    "attributes": {
                      "image": "burgundy_cardigan.jpg"
                    },
                    "children": [
                      "Burgundy"
                    ]
                  },
                  {
                    "tagName": "color_swatch",
                    "attributes": {
                      "image": "black_cardigan.jpg"
                    },
                    "children": [
                      "Black"
                    ]
                  }
                ]
              },
              {
                "tagName": "size",
                "attributes": {
                  "description": "Large"
                },
                "children": [
                  {
                    "tagName": "color_swatch",
                    "attributes": {
                      "image": "navy_cardigan.jpg"
                    },
                    "children": [
                      "Navy"
                    ]
                  },
                  {
                    "tagName": "color_swatch",
                    "attributes": {
                      "image": "black_cardigan.jpg"
                    },
                    "children": [
                      "Black"
                    ]
                  }
                ]
              },
              {
                "tagName": "size",
                "attributes": {
                  "description": "Extra Large"
                },
                "children": [
                  {
                    "tagName": "color_swatch",
                    "attributes": {
                      "image": "burgundy_cardigan.jpg"
                    },
                    "children": [
                      "Burgundy"
                    ]
                  },
                  {
                    "tagName": "color_swatch",
                    "attributes": {
                      "image": "black_cardigan.jpg"
                    },
                    "children": [
                      "Black"
                    ]
                  }
                ]
              }
            ]
          }
        ]
      }
    ]
  }
]