-
-
Notifications
You must be signed in to change notification settings - Fork 308
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comparison to xmldom #134
Comments
This is the benchmarking result for just parsing; Please note that performance of fxp will be higher when you'll not convert the XML to JS object but an intermediate object (XMLnode). However, converting to JS object give you the benefit of easy manipulation.
I'll say that you should not compare both packages if you want to use DOM style manipulation. doc3.documentElement.appendChild(doc3.documentElement.lastChild); But if you're fine to manipulate js objects directly then you don't need to compare them. |
How does the performance of reading XML files compares to xmldom? Was this investigated?
The text was updated successfully, but these errors were encountered: