Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
jquery.json-viewer
Advanced tools
json-viewer is a jQuery plugin for easily displaying JSON objects by transforming them into HTML.
Features:
Check out the demo page!
With npm:
npm install jquery.json-viewer
Make sure jQuery is already included. Then import jquery.json-viewer.js
and jquery.json-viewer.css
in your HTML document:
<head>
<script src="node_modules/jquery.json-viewer/json-viewer/jquery.json-viewer.js"></script>
<link href="node_modules/jquery.json-viewer/json-viewer/jquery.json-viewer.css" type="text/css" rel="stylesheet">
</head>
You can also simply copy json-viewer/jquery.json-viewer.js
and json-viewer/jquery.json-viewer.css
files from this git repository into your project.
Call the jsonViewer()
method on target element and pass your JSON data in argument:
<pre id="json-renderer"></pre>
var data = {
"foobar": "foobaz"
};
$('#json-renderer').jsonViewer(data);
The jsonViewer
method accepts an optional config object as a second argument. The supported options are:
collapsed
(boolean, default: false
): all nodes are collapsed at html generation.rootCollapsable
(boolean, default: true
): allow root element to be collasped.withQuotes
(boolean, default: false
): all JSON keys are surrounded with double quotation marks ({"foobar": 1}
instead of {foobar: 1}
).withLinks
(boolean, default: true
): all values that are valid links will be clickable, if false
they will only be strings.bigNumbers
(boolean, default: false
): support different libraries for big numbers, if true
display the real number only, false
shows object containing big number with all fields instead of number only.Example:
$('#json-renderer').jsonViewer(data, {collapsed: true, withQuotes: true, withLinks: false});
Enabling bigNumbers
the json object visible will show the number stored inside the object only and does not display
all fields.
Example Object using Decimal.js - other libraries are similar:
var Decimal = require('decimal.js');
var data = { "x": new Decimal(123) };
$('#json-renderer').jsonViewer(data, {bigNumbers: false});
// {
// "x": {
// "constructor": ,
// "s": 1,
// "e": 2,
// "d": [
// 123
// ]
// }
// }
$('#json-renderer').jsonViewer(data, {bigNumbers: true});
// {
// "x": 123
// }
The following libraries are supported:
FAQs
jQuery plugin for displaying JSON data
The npm package jquery.json-viewer receives a total of 3,885 weekly downloads. As such, jquery.json-viewer popularity was classified as popular.
We found that jquery.json-viewer 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.