Git Product home page Git Product logo

node-xml-object's Introduction

XML Object

NPM version Dependency Status Build Status

Maps normal objects/values to xml. Most XML libraries require a special object "syntax" to support xml features like attributes, which is necessary if you want to be able to output all kinds of xml. xml-object isn't as flexible, but just concerns itself with outputting an xml representation of javascript data.

Sample usage:

var lib = {xml: require('xml-object')};
var xml = lib.xml({a:"Submarine"}, {declaration:true, indent:true});
console.log(xml);

Result:

<?xml version="1.0" encoding="UTF-8"?>
<a>Submarine</a>

The options object is optional, and true can be passed as a short-hand for {indent:true}.

The test cases probably describe the mapping behaviour best:

{
  name: "simple element",
  value: {a:"Submarine"},
  result: '<a>Submarine</a>'
},
{
  name: "simple value",
  value: "Submarine",
  result: '<item>Submarine</item>'
},
{
  name: "top level array",
  value: [1,2,3],
  result: '<items type="array"><item>1</item><item>2</item><item>3</item></items>'
},
{
  name: "multiple elements",
  value: {a:1,b:2},
  result: '<a>1</a><b>2</b>'
},
{
  name: "nested elements",
  value: {a:{b:1,c:2}},
  result: '<a><b>1</b><c>2</c></a>'
},
{
  name: "nested arrays",
  value: {a:[[1,2],[3,4]]},
  result: '<a type="array"><item type="array"><item>1</item><item>2</item></item><item type="array"><item>3</item><item>4</item></item></a>'
}

node-xml-object's People

Contributors

hugowetterberg avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.