# xmlbuilder-js An XML builder for [node.js](http://nodejs.org/) similar to [java-xmlbuilder](https://github.com/jmurty/java-xmlbuilder). [![NPM Version](http://img.shields.io/npm/v/xmlbuilder.svg?style=flat-square)](https://npmjs.com/package/xmlbuilder) [![License](http://img.shields.io/npm/l/xmlbuilder.svg?style=flat-square)](http://opensource.org/licenses/MIT) [![Build Status](http://img.shields.io/travis/oozcitak/xmlbuilder-js.svg?style=flat-square)](http://travis-ci.org/oozcitak/xmlbuilder-js) [![Dependency Status](http://img.shields.io/david/oozcitak/xmlbuilder-js.svg?style=flat-square)](https://david-dm.org/oozcitak/xmlbuilder-js) [![Dev Dependency Status](http://img.shields.io/david/dev/oozcitak/xmlbuilder-js.svg?style=flat-square)](https://david-dm.org/oozcitak/xmlbuilder-js) ### Installation: ``` sh npm install xmlbuilder ``` ### Usage: ``` js var builder = require('xmlbuilder'); var xml = builder.create('root') .ele('xmlbuilder', {'for': 'node-js'}) .ele('repo', {'type': 'git'}, 'git://github.com/oozcitak/xmlbuilder-js.git') .end({ pretty: true}); console.log(xml); ``` will result in: ``` xml git://github.com/oozcitak/xmlbuilder-js.git ``` It is also possible to convert objects into nodes: ``` js builder.create({ root: { xmlbuilder: { '@for': 'node-js', // attributes start with @ repo: { '@type': 'git', '#text': 'git://github.com/oozcitak/xmlbuilder-js.git' // #text denotes element text } } } }); ``` If you need to do some processing: ``` js var root = builder.create('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: ``` xml ``` See the [wiki](https://github.com/oozcitak/xmlbuilder-js/wiki) for details.