You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

react-xml-viewer-2

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-xml-viewer-2

Simple and configurable React component to prettify XMLs, now supporting React 18.

2.0.1
latest
Source
npmnpm
Version published
Weekly downloads
145
-46.1%
Maintainers
1
Weekly downloads
 
Created
Source

react-xml-viewer

Simple and configurable React component to prettify XMLs, now supporting React 18.

This is a fork of https://github.com/alissonmbr/react-xml-viewer and the only adjustment done so far was bumping up the peer dependency version for React.

NPM JavaScript Style Guide

Install

npm install --save react-xml-viewer-2

Usage

import React, { Component } from 'react'
import XMLViewer from 'react-xml-viewer-2'

const xml = '<hello>World</hello>'

export default class App extends Component {
  render () {
    return (
      <div>
        <XMLViewer xml={xml} />
      </div>
    )
  }
}

Props

xml (string)

A xml string to prettify. Default: undefined Example: <hello>World</hello>

indentSize (number)

The size of the indentation. Default: 2

invalidXml (node)

When the xml is invalid, invalidXml will be returned. Default:

Invalid XML!

collapsible (bool)

Allow collapse/expand tags by click on them When tag is collapsed its content and attributes are hidden. Only is shown Default: false

theme (object)

KeyTypeDefaultDescription
attributeKeyColorcolor#2a7ab0set the attribute key color (<tag attribute-key="hello" />)
attributeValueColorcolor#008000set the attribute value color ( <tag attr="Attribute value">)
cdataColorcolor#1D781Dset the cdata element color (<![CDATA[some stuff]]>)
commentColorcolor#aaaset the comment color (<!-- this is a comment -->)
separatorColorcolor#333set the separators colors (<, >, </, />, =, <?, ?>)
tagColorcolor#d43900set the tag name color (<tag-name />)
textColorcolor#333set the text color (<tag>Text</tag>)
overflowBreakboolfalseadjust the xml to fit in the parent width without overflowing

Example: Changing attribute key and value color

import React, { Component } from 'react'
import XMLViewer from 'react-xml-viewer'

const xml = '<hello attr="World" />'
const customTheme = {
  "attributeKeyColor": "#FF0000",
  "attributeValueColor": "#000FF"
}

export default class App extends Component {
  render () {
    return (
      <div>
        <XMLViewer xml={xml} theme={customTheme} />
      </div>
    )
  }
}

Run with typescript

If you have difficulties to run with typescript declare module 'react-xml-viewer-2' to react-app-env.d.ts

License

MIT © alissonmbr

Keywords

xml

FAQs

Package last updated on 13 Feb 2023

Did you know?

Socket

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