Socket
Socket
Sign inDemoInstall

mini-xml

Package Overview
Dependencies
1
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    mini-xml

Build xml files from json objects


Version published
Weekly downloads
28
increased by16.67%
Maintainers
1
Install size
70.3 kB
Created
Weekly downloads
 

Readme

Source

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

Keywords

FAQs

Last updated on 24 Aug 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc