
Research
Security News
The Growing Risk of Malicious Browser Extensions
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
json-to-tree-render
Advanced tools
An npm package to render JSON object to a pretty tree view in html with collapsible and editable nodes.
A JavaScript library for rendering a tree view of a JSON object.
To install the json-to-tree-render
package, run the following command:
npm install json-to-tree-render
To use the json-to-tree-render
package, you can include the CDN https://unpkg.com/json-to-tree-render@1.0.2/src/index.js
file in your HTML file and call the createTreeView
function with the JSON object and root element as arguments.
For rendering icons, we also use the stylesheets added to the headers.
<!-- index.html -->
<!DOCTYPE html>
<html>
<head>
<title>My Tree View</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<script src="https://use.fontawesome.com/5d5a7b196b.js"></script>
</head>
<body style="background-color:black;">
<!-- include the bundle file in a script tag -->
<script src="https://unpkg.com/json-to-tree-render@1.0.2/src/index.js"></script>
<!-- create a root element for the tree view -->
<div id="root" style="color: white;"></div>
<script>
const json = {
"1": {
"1.1": {
"1.1.1": "Hello world"
}
},
"2": "hello",
"3": "world"
};
// get the root element
const root = document.getElementById('root');
// create the tree view
createTreeView(json, root);
</script>
</body>
</html>
createTreeView(json: Object, container: HTMLElement)
Renders a tree view of the JSON object in the specified container element.
Arguments
json
(Object): The JSON object to render as a tree view.container
(HTMLElement): The root element in which to render the tree view.Returns
To contribute to the json-to-tree-render package, please follow these guidelines:
This project is licensed under the GNU General Public License v3.0.
The GNU General Public License (GPL) is a free, copyleft license used primarily for software. The GPL requires that any modifications or additions to the software must also be made available under the GPL.
For more information, see the GNU General Public License at https://www.gnu.org/licenses/gpl-3.0.html.
FAQs
An npm package to render JSON object to a pretty tree view in html with collapsible and editable nodes.
The npm package json-to-tree-render receives a total of 6 weekly downloads. As such, json-to-tree-render popularity was classified as not popular.
We found that json-to-tree-render 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.
Research
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Research
Security News
An in-depth analysis of credential stealers, crypto drainers, cryptojackers, and clipboard hijackers abusing open source package registries to compromise Web3 development environments.
Security News
pnpm 10.12.1 introduces a global virtual store for faster installs and new options for managing dependencies with version catalogs.