We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
npm install xmlbuilder
var xml = require('xmlbuilder') .create('root') .ele('hello', 'xml') .end(); // <?xml version="1.0"?><root><hello>xml</hello></root>
See the Quick Start guide or Usage page for more detailed instructions.