npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

js2xmlparser2

v0.2.0

Published

Parses JavaScript objects into XML. This is a fork of the original js2xmlparser, with some additional features

Downloads

818,346

Readme

node-js2xmlparser

Overview

js2xmlparser is a Node.js module that parses JavaScript objects into XML.

Features

Since XML is a data-interchange format, js2xmlparser is designed primarily for JSON-type objects, arrays and primitive data types, like many of the other JavaScript to XML parsers currently available for Node.js.

However, js2xmlparser is capable of parsing any object, including native JavaScript objects such as Date and RegExp, by taking advantage of each object's toString function. Functions are a special case where the return value of the function itself is used instead of the toString function, if available.

js2xmlparser also supports a number of constructs unique to XML:

  • attributes (through a unique attribute property in objects)
  • mixed content (through a unique value property in objects)
  • multiple elements with the same name (through arrays)

js2xmlparser can also pretty-print the XML it outputs with the option of customizing the indent string.

Installation

The easiest way to install js2xmlparser is to use npm: npm install js2xmlparser.

Alternatively, you may download the source from GitHub and copy it to a folder named "js2xmlparser" within your "node_modules" directory.

Usage

The js2xmlparser module contains one function which takes the following arguments:

  • root - string representing the XML root element's name
  • data - object or JSON string to be converted to XML
  • options - options object (optional)
    • callFunctions - if true, calls member functions (with no arguments) and includes their return value in the XML; if false, returns the text of the function (optional, default is true)
    • wrapArray - array wrapping options object (optional)
      • enabled - if true, all elements in an array will be added to a single XML element as child elements; if false, array elements will be placed in their own XML elements (optional, default is false)
      • elementName - name of XML child elements when array wrapping is enabled (optional, default is "item")
    • useCDATA - if true, all strings are enclosed in CDATA tags instead of escaping illegal XML characters (optional, default is false)
    • convertMap - object mapping certain types of objects (as given by Object.prototype.toString.call(<object>)) to functions to convert those types of objects to a particular string representation; "*" can be used as a wildcard for all types of objects (optional, default is an empty object)
    • declaration - XML declaration options object (optional)
      • include - if true, includes an XML declaration (optional, default is true)
      • encoding - string representing the XML encoding for the corresponding attribute in the declaration; a value of null represents no encoding attribute (optional, default is "UTF-8")
    • attributeString - string representing attribute property (optional, default is "@")
    • valueString - string representing the value property (optional, default is "#")
    • prettyPrinting - pretty-printing options object (optional)
      • enabled - if true, pretty-printing is enabled (optional, default is true)
      • indentString - string representing the indent (optional, default is "\t")

Example

The following example illustrates the basic usage of js2xmlparser:

var js2xmlparser = require("js2xmlparser");

var data = {
    "firstName": "John",
    "lastName": "Smith"
};

console.log(js2xmlparser("person", data));

> <?xml version="1.0" encoding="UTF-8"?>
> <person>
>     <firstName>John</firstName>
>     <lastName>Smith</lastName>
> </person>

Here's a more complex example that builds on the first:

var js2xmlparser = require("js2xmlparser");

var data = {
    "firstName": "John",
    "lastName": "Smith",
    "dateOfBirth": new Date(1964, 07, 26),
    "address": {
        "@": {
            "type": "home"
        },
        "streetAddress": "3212 22nd St",
        "city": "Chicago",
        "state": "Illinois",
        "zip": 10000
    },
    "phone": [
        {
            "@": {
                "type": "home"
            },
            "#": "123-555-4567"
        },
        {
            "@": {
                "type": "cell"
            },
            "#": "456-555-7890"
        }
    ],
    "email": function() {return "[email protected]";},
    "notes": "John's profile is not complete."
};

console.log(js2xmlparser("person", data));

> <?xml version="1.0" encoding="UTF-8"?>
> <person>
>     <firstName>John</firstName>
>     <lastName>Smith</lastName>
>     <dateOfBirth>Wed Aug 26 1964 00:00:00 GMT-0400 (Eastern Daylight Time)</dateOfBirth>
>     <address type="home">
>         <streetAddress>3212 22nd St</streetAddress>
>         <city>Chicago</city>
>         <state>Illinois</state>
>         <zip>10000</zip>
>     </address>
>     <phone type="home">123-555-4567</phone>
>     <phone type="cell">456-555-7890</phone>
>     <email>[email protected]</email>
>     <notes>John&apos;s profile is not complete.</notes>
> </person>

Here's an example that makes use of array wrapping:

var js2xmlparser = require("js2xmlparser");

var data  = {
    "phone": [
        {
            "@": {
                "type": "home"
            },
            "#": "123-555-4567"
        },
        {
            "@": {
                "type": "cell"
            },
            "#": "456-555-7890"
        }
    ]
};

var options = {
    wrapArray: {
        enabled: true
    }
};

console.log(js2xmlparser("person", data, options));

> <?xml version="1.0" encoding="UTF-8"?>
> <person>
>     <phone>
> 	      <item type="home">123-555-4567</item>
> 	      <item type="cell">456-555-7890</item>
>     </phone>
> </person>

Here's an example that wraps strings in CDATA tags instead of escaping invalid characters.

var js2xmlparser = require("js2xmlparser");

var data = {
    "notes": "John's profile is not complete."
};

var options = {
    useCDATA: true
};

console.log(js2xmlparser("person", data, options));

> <?xml version="1.0" encoding="UTF-8"?>
> <person>
>     <notes><![CDATA[John's profile is not complete.]]></notes>
> </person>

Here's an example that uses the convert map feature:

var js2xmlparser = require("js2xmlparser");

var data = {
    "dateOfBirth": new Date(1964, 7, 26)
};

var options = {
    convertMap: {
        "[object Date]": function(date) {
            return date.toISOString();
        }
    }
};

console.log(js2xmlparser("person", data, options));

> <?xml version="1.0" encoding="UTF-8"?>
> <person>
>     <dateOfBirth>1964-08-26T04:00:00.000Z</dateOfBirth>
> </person>