
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
json-pretty-textarea
Advanced tools
JSON pretty Component , can use directly on React projects to show your json in textarea component with controlling font size and color of everything
JSON pretty Textareais a React library for dealing with json files and showing them on textarea.
Use the package manager npm to install json-pretty-textarea.
npm i json-pretty-textarea
# import
import { JsonPrettierTextarea } from "json-pretty-textarea";
# return
<JsonPrettierTextarea
prettyjson={MockDocument}
preBcl="white"
stringCl="blue"
numberCl="blue"
booleanCl="red"
nullCl="violet"
keyCl="red"
string_font_size="1rem"
number_font_size="1rem"
boolean_font_size="1rem"
null_font_size="1rem"
key_font_size="1rem"
height="300px"
width="300px"
borderRadius="10px"
/>
| Property | type | Default | Description |
|---|---|---|---|
| prettyjson | json data | MockDocument | Source File json |
| preBcl | CSS | white | Textarea BackGround color |
| stringCl | CSS | green | String Values color |
| numberCl | CSS | darkorange | number Values color |
| booleanCl | CSS | blue | boolean Values color |
| nullCl | CSS | magenta | null Values color |
| keyCl | CSS | red | key Values color |
| string_font_size | CSS | 1rem | font_size |
| number_font_size | CSS | 1rem | font_size |
| boolean_font_size | CSS | 1rem | font_size |
| null_font_size | CSS | 1rem | font_size |
| key_font_size | CSS | 1rem | font_size |
| height | CSS | 100% | textarea height |
| width | CSS | 100% | textarea width |
| borderRadius | CSS | 0.5rem | border radius |
import MockDocument from "./MOCK_DATA.json";
import { JsonPrettierTextarea } from "json-pretty-textarea";
export const test = () => {
return (
<JsonPrettierTextarea
prettyjson={MockDocument}
preBcl="white"
stringCl="green"
numberCl="skyblue"
booleanCl="orange"
nullCl="violet"
keyCl="black"
string_font_size="1rem"
number_font_size="1rem"
boolean_font_size="1rem"
null_font_size="1rem"
key_font_size="1.2rem"
height="500px"
width="800px"
borderRadius="10px"
/>
);
};
[json-pretty-textarea]https://codesandbox.io/s/json-pretty-textarea-qus7dk
For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
FAQs
JSON pretty Component , can use directly on React projects to show your json in textarea component with controlling font size and color of everything
The npm package json-pretty-textarea receives a total of 5 weekly downloads. As such, json-pretty-textarea popularity was classified as not popular.
We found that json-pretty-textarea 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.