Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@huolala-tech/react-json-view
Advanced tools
Engligh | 中文
<ReactJsonView />
is a React component for displaying JSON data.
The component accepts source data of string type, which means you need to ensure that the data passed in is valid JSON string and can be parsed without errors using the JSON.parse()
method. Otherwise, the data will be converted to a string type before being processed.
# Yarn
yarn add @huolala-tech/react-json-view
# NPM
npm install @huolala-tech/react-json-view
# pnpm
pnpm install @huolala-tech/react-json-view
See examples
imoprt React from 'react';
import ReactDOM from 'react-dom';
import ReactJsonView from '@huolala-tech/react-json-view';
import '@huolala-tech/react-json-view/dist/style.css';
const data = JSON.stringify([
1,
true,
"Hello world",
["foo", "bar", "baz"],
{
name: "@huolala-tech/react-json-view",
contributor: "wqcstrong",
description: 'The component accepts source data of *string* type, which means you need to ensure that the data passed in is valid JSON string and can be parsed without errors using the `JSON.parse()` method.',
},
]);
const App = () => {
return (
<div id="app">
<ReactJsonView
source={data}
rootLabel="Response data"
keyCount={200}
defaultExpand={false}
maxTitleSize={100}
/>
</div>
);
};
ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById('root') as HTMLElement
)
Now you should get that after above:
The default configuration usage:
<ReactJsonView
source={data}
rootLabel=""
defaultExpand={false}
keyCount={200}
maxTitleSize={100}
/>
Name | Type | Default value | Description |
---|---|---|---|
source | string | None | Origin json string. |
rootLabel | React.ReactNode | "" | Root node's label. |
defaultExpand | boolean | false | Whether expand property panel. |
keyCount | number / "all" | 200 | ReactJsonView supports lazily loading more properties. The parameter indicates how many properties to show at a time, and you can pass "all" to show all properties. |
maxTitleSize | number | 100 | The max length of abbreviated title in collapse. |
FAQs
A react component for displaying JSON data
We found that @huolala-tech/react-json-view demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.