Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
react-json-parser
Advanced tools
Transforms a JSX string to a JSON tree
npm install react-json-parser
react-json-parser [options]
-h, --help output usage information
-V, --version output the version number
-f, --file <file> JSX file to read, defaults to stdin if not set
-o, --output <output> JSON destination file, defaults to stdout if not set
-p, --pretty pretty-print JSON
-a, --accept [component type] only accepts the specified component type, can be used multiple times
--no-plain-text do not allow plain-text children
When the file
option is not provided, the JSX string is read from stdin, example:
echo '<MyComponent test />' | react-json-parser --pretty
Parses the provided code
string using the supported options
:
only: Array<string>
: only accepts the provided components types, by default accepts anyplainText: boolean
: allow plain-text children, defaults to true
const { parse } = require('react-json-parser')
const tree = parse(
'<MyComponent test>Hello <ChildComponent /><OtherChild></MyComponent>',
{
only: ['MyComponent', 'ChildComponent'],
plainText: false,
}
)
// tree = {type: 'MyComponent', props: {children: [{type: 'ChildComponent'}], test: true}}
MIT
FAQs
Transforms a JSX string to a JSON tree
The npm package react-json-parser receives a total of 8 weekly downloads. As such, react-json-parser popularity was classified as not popular.
We found that react-json-parser demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.