jtx

1.0.4 • Public • Published

jtx

Description

Tiny JSON to XML conversion utility.

Installation

npm install jtx

Usage

Javascript

import jtx from 'jtx'
 
const myJson = {
    "hello": {
        "there": [
            {
                "i": null,
                "am": 1,
                "here": undefined
            }
        ]
    }
}
 
console.log(jtx(myJson))
 
// <hello><there><0><i></i><am>1</am></0></there></hello>

Input

Accepts:

  • String

  • Object

  • Array

Output

XML String

Options

You can pass an optional configuration object as the last parameter:

const myJson = { test: true }
jtx(myJson, { header: true })
// <?xml version="1.0" encoding="UTF-8" standalone="no" ?><test>true</test>
Available Options
name type default
header boolean false

CLI

Usage

Example One:

$ jtx test
 
test

Example Two:

test.json

{
    "hello": "there"
}
$ jtx test.json
 
<hello>there</hello>

Input

Accepts:

  • String

  • Filepath

Package Sidebar

Install

npm i jtx

Weekly Downloads

2

Version

1.0.4

License

MIT

Unpacked Size

14.4 kB

Total Files

12

Last publish

Collaborators

  • wulfmann