Package Exports
- xmlbuilder
- xmlbuilder/lib/XMLBuilder
- xmlbuilder/lib/XMLFragment
- xmlbuilder/lib/index
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (xmlbuilder) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
xmlbuilder-js
An XMLBuilder for node.js similar to java-xmlbuilder.
Installation:
npm install xmlbuilderImportant:
I had to break compatibility while adding multiple instances in 0.1.3. As a result, version from v0.1.3 are not compatible with previous versions.
Usage:
var builder = require('xmlbuilder');
var doc = builder.create();
doc.begin('root', {'version': '1.0'})
.ele('xmlbuilder', {'for': 'node-js'})
.ele('repo', {'type': 'git'}, 'git://github.com/oozcitak/xmlbuilder-js.git')
console.log(doc.toString({ pretty: true }));will result in:
<?xml version="1.0"?>
<root>
<xmlbuilder for="node-js">
<repo type="git">git://github.com/oozcitak/xmlbuilder-js.git</repo>
</xmlbuilder>
</root>If you need to do some processing:
var root = doc.begin('squares');
root.com('f(x) = x^2');
for(var i = 1; i <= 5; i++)
{
var item = root.ele('data');
item.att('x', i);
item.att('y', i * i);
}This will result in:
<squares>
<!-- f(x) = x^2 -->
<data x="1" y="1"/>
<data x="2" y="4"/>
<data x="3" y="9"/>
<data x="4" y="16"/>
<data x="5" y="25"/>
</squares>See the Usage page in the wiki for more detailed instructions.
License:
xmlbuilder-js is MIT Licensed.
