3 An XML builder
for [node.js](https:
4 [java-xmlbuilder](https:
8 [;
24 var xml = builder.create(
'root')
26 .ele(
'repo', {
'type':
'git'},
'git://github.com/oozcitak/xmlbuilder-js.git')
27 .end({ pretty:
true});
43 It is also possible to convert objects into nodes:
51 '#text':
'git://github.com/oozcitak/xmlbuilder-js.git'
58 If you need to
do some processing:
61 var root = builder.create(
'squares');
62 root.com(
'f(x) = x^2');
63 for(var i = 1; i <= 5; i++)
65 var item = root.ele(
'data');