
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
react-xml-viewer-2
Advanced tools
Simple and configurable React component to prettify XMLs, now supporting React 18.
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 install --save react-xml-viewer-2
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>
)
}
}
A xml string to prettify.
Default: undefined
Example: <hello>World</hello>
The size of the indentation. Default: 2
When the xml is invalid, invalidXml will be returned. Default:
Allow collapse/expand tags by click on them When tag is collapsed its content and attributes are hidden. Only is shown Default: false
Key | Type | Default | Description |
---|---|---|---|
attributeKeyColor | color | #2a7ab0 | set the attribute key color (<tag attribute-key="hello" /> ) |
attributeValueColor | color | #008000 | set the attribute value color ( <tag attr="Attribute value"> ) |
cdataColor | color | #1D781D | set the cdata element color (<![CDATA[some stuff]]> ) |
commentColor | color | #aaa | set the comment color (<!-- this is a comment --> ) |
separatorColor | color | #333 | set the separators colors (<, >, </, />, =, <?, ?> ) |
tagColor | color | #d43900 | set the tag name color (<tag-name /> ) |
textColor | color | #333 | set the text color (<tag>Text</tag> ) |
overflowBreak | bool | false | adjust 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>
)
}
}
If you have difficulties to run with typescript declare module 'react-xml-viewer-2' to react-app-env.d.ts
MIT © alissonmbr
FAQs
Simple and configurable React component to prettify XMLs, now supporting React 18.
The npm package react-xml-viewer-2 receives a total of 253 weekly downloads. As such, react-xml-viewer-2 popularity was classified as not popular.
We found that react-xml-viewer-2 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.