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