1.2.0 • Published 8 months ago

mini-xml v1.2.0

Weekly downloads
-
License
ISC
Repository
github
Last release
8 months ago

mini-xml

Build npm version Known Vulnerabilities

A small, fast, and simple XML parser for Node.js and the browser. Generate XML from json.

Usage

Setup

const miniXml = require('mini-xml');

or

import { generateXMLFromObject } from 'mini-xml';

Create XML from JSON

import { generateXMLFromObject } from 'mini-xml';

const json = {
    rss: {
      '@version': '2.0',
      channel: {
        title: 'W3Schools Home Page',
        link: 'https://www.w3schools.com',
        description: 'Free web building tutorials',
        item: [
          {
            title: 'RSS Tutorial',
            link: 'https://www.w3schools.com/xml/xml_rss.asp',
            description: 'New RSS tutorial on W3Schools',
          },
          {
            title: 'XML Tutorial',
            link: 'https://www.w3schools.com/xml',
            description: 'New XML tutorial on W3Schools',
          },
        ],
      },
    },
  };

const generatedXML = generateXMLFromObject(json);

TBA

1.2.0

8 months ago

1.1.2

8 months ago

1.1.1

8 months ago

1.1.0

8 months ago

1.0.1

11 months ago

1.0.0

11 months ago