I am looking for a diff tool that allows me to compare 2 xml (or json) files ignoring the order of its elements.
Example:
<Node>
<Child name="Alpha"/>
<Child name="Beta"/>
<Child name="Charlie"/>
</Node>
<Node>
<Child name="Beta"/>
<Child name="Charlie"/>
<Child name="Alpha2"/>
</Node>
The 2 Node elements should be considered similar and the only difference to be shown is that Node1 has a child name "Alpha" which is "Alpha2" in the other node.
StackOverflow has a similar question, but it was asked 8 years ago, the solution no longer works. Is there a newer tool available?