W
Analyzed 12 months ago
WAX.js is an ECMAScript implementation of the Writing API for XML (WAX).
WAX has the following characteristics and benefits:
- Focuses on writing XML, not reading it
- Requires less code than other approaches
- Uses less memory than other approaches because it outputs XML as each method is
... [More]
called rather than storing it in a DOM-like memory structure
- Doesn't depend on any libraries or proprietary browser technology other than a javascript interpreter
- Is very small in size, especially the compressed version
- Writes all XML node types
- Always outputs well-formed XML or throws an exception
- Provides extensive error checking
- Automatically escapes special characters in text and attribute values unless escaping is turned off [Less]