xmlbuilder

WebJar for xmlbuilder

License

License

MIT
Categories

Categories

JavaScript Languages Github Development Tools Version Controls
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

github-com-oozcitak-xmlbuilder-js
Last Version

Last Version

4.1.0
Release Date

Release Date

Type

Type

jar
Description

Description

xmlbuilder
WebJar for xmlbuilder
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/oozcitak/xmlbuilder-js

Download github-com-oozcitak-xmlbuilder-js

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/github-com-oozcitak-xmlbuilder-js/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>github-com-oozcitak-xmlbuilder-js</artifactId>
    <version>4.1.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/github-com-oozcitak-xmlbuilder-js/
implementation 'org.webjars.npm:github-com-oozcitak-xmlbuilder-js:4.1.0'
// https://jarcasting.com/artifacts/org.webjars.npm/github-com-oozcitak-xmlbuilder-js/
implementation ("org.webjars.npm:github-com-oozcitak-xmlbuilder-js:4.1.0")
'org.webjars.npm:github-com-oozcitak-xmlbuilder-js:jar:4.1.0'
<dependency org="org.webjars.npm" name="github-com-oozcitak-xmlbuilder-js" rev="4.1.0">
  <artifact name="github-com-oozcitak-xmlbuilder-js" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='github-com-oozcitak-xmlbuilder-js', version='4.1.0')
)
libraryDependencies += "org.webjars.npm" % "github-com-oozcitak-xmlbuilder-js" % "4.1.0"
[org.webjars.npm/github-com-oozcitak-xmlbuilder-js "4.1.0"]

Dependencies

compile (1)

Group / Artifact Type Version
org.webjars.npm : lodash jar [3.5.0,4)

Project Modules

There are no modules declared in this project.

xmlbuilder-js

An XML builder for node.js similar to java-xmlbuilder.

License NPM Version NPM Downloads

Travis Build Status AppVeyor Build status Dev Dependency Status Code Coverage

Announcing xmlbuilder2:

The new release of xmlbuilder is available at xmlbuilder2! xmlbuilder2 has been redesigned from the ground up to be fully conforming to the modern DOM specification. It supports XML namespaces, provides built-in converters for multiple formats, collection functions, and more. Please see upgrading from xmlbuilder in the wiki.

New development will be focused towards xmlbuilder2; xmlbuilder will only receive critical bug fixes.

Installation:

npm install xmlbuilder

Usage:

var builder = require('xmlbuilder');

var xml = builder.create('root')
  .ele('xmlbuilder')
    .ele('repo', {'type': 'git'}, 'git://github.com/oozcitak/xmlbuilder-js.git')
  .end({ pretty: true});

console.log(xml);

will result in:

<?xml version="1.0"?>
<root>
  <xmlbuilder>
    <repo type="git">git://github.com/oozcitak/xmlbuilder-js.git</repo>
  </xmlbuilder>
</root>

It is also possible to convert objects into nodes:

var builder = require('xmlbuilder');

var obj = {
  root: {
    xmlbuilder: {
      repo: {
        '@type': 'git', // attributes start with @
        '#text': 'git://github.com/oozcitak/xmlbuilder-js.git' // text node
      }
    }
  }
};

var xml = builder.create(obj).end({ pretty: true});
console.log(xml);

If you need to do some processing:

var builder = require('xmlbuilder');

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);
}

var xml = root.end({ pretty: true});
console.log(xml);

This will result in:

<?xml version="1.0"?>
<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>

Documentation:

See the wiki for details and examples for more complex examples.

Donations:

Please consider becoming a backer or sponsor to help support development.

Donate Button

Versions

Version
4.1.0