
Research
wget to Wipeout: Malicious Go Modules Fetch Destructive Payload
Socket's research uncovers three dangerous Go modules that contain obfuscated disk-wiping malware, threatening complete data loss.
@pgrabovets/json-view
Advanced tools
This is a javascript library for displaying json data into a DOM. [link to demo](http://pgrabovets.github.io/json-view/)
This is a javascript library for displaying json data into a DOM. link to demo
npm install '@pgrabovets/json-view';
include jsonview.js from dist directory in your html page
<script src="jsonview.js"></script>
or you can use import
import jsonview from '@pgrabovets/json-view';
get json data and render tree into DOM
// get json data
const data = '{"name": "json-view","version": "1.0.0"}';
// create json tree object
const tree = jsonview.create(data);
// render tree into dom element
jsonview.render(tree, document.querySelector('.tree'));
// you can render json data without creating tree
const tree = jsonview.renderJSON(data, document.querySelector('.tree'));
control methods
// expand tree
jsonview.expand(tree);
// collapse tree
jsonview.collapse(tree);
// traverse tree object
jsonview.traverse(tree, function(node) {
console.log(node);
});
// function toggles between show or hide
jsonview.toggleNode(tree);
// destroy and unmount json tree from the dom
jsonview.destroy(tree);
<!DOCTYPE html>
<html>
<head>
<title>JSON VIEW</title>
</head>
<body>
<div class="root"></div>
<script type="text/javascript" src="jsonview.js"></script>
<script type="text/javascript">
fetch('example2.json')
.then((res)=> {
return res.text();
})
.then((data) => {
const tree = jsonview.create(data);
jsonview.render(tree, document.querySelector('.root'));
jsonview.expand(tree);
})
.catch((err) => {
console.log(err);
})
</script>
</body>
</html>
import jsonview from '@pgrabovets/json-view';
fetch('example2.json')
.then((res)=> {
return res.text();
})
.then((data) => {
const tree = jsonview.create(data);
jsonview.render(tree, document.querySelector('.root'));
jsonview.expand(tree);
})
.catch((err) => {
console.log(err);
})
$ npm install
$ npm run serve
$ npm run build
open http://localhost:3000/
FAQs
This is a javascript library for displaying json data into a DOM. [link to demo](http://pgrabovets.github.io/json-view/)
The npm package @pgrabovets/json-view receives a total of 5,003 weekly downloads. As such, @pgrabovets/json-view popularity was classified as popular.
We found that @pgrabovets/json-view demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Socket's research uncovers three dangerous Go modules that contain obfuscated disk-wiping malware, threatening complete data loss.
Research
Socket uncovers malicious packages on PyPI using Gmail's SMTP protocol for command and control (C2) to exfiltrate data and execute commands.
Product
We redesigned Socket's first logged-in page to display rich and insightful visualizations about your repositories protected against supply chain threats.