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.
@alenaksu/json-viewer
Advanced tools
[![GitHub release](https://img.shields.io/github/v/release/alenaksu/json-viewer.svg)](https://github.com/alenaksu/json-viewer/releases) [![npm](https://badgen.net/npm/v/@alenaksu/json-viewer)](https://www.npmjs.com/package/@alenaksu/json-viewer) [![downlo
A Web Component to visualize JSON data in a tree view
The package contains a bundled version of the component which includes also the Lit library. It can be useful in case you want to import the package using a CDN.
<script src="https://unpkg.com/@alenaksu/json-viewer@2.1.0/dist/json-viewer.bundle.js"></script>
Install the component through NPM:
npm i @alenaksu/json-viewer
Import the package to your project, this way the component will be automatically defined in the custom elements registry with its default tag name json-viewer
.
import '@alenaksu/json-viewer';
If you want to extend the component or if you just need to use it in scoped registries with a different tag name, then you can import the component class from the package:
import { JsonViewer } '@alenaksu/json-viewer/JsonViewer.js';
class MyJsonViewer extends JsonViewer {
...
}
customElements.define('my-json-viewer', MyJsonViewer);
<json-viewer></json-viewer>
data
- the string representation of JSON object to loaddata
- get/set the JSON objectfilter (regexOrPath: RegExp|string) => void
| Maintains only the nodes that match the given criteriaresetFilter () => void
| Clear the filterexpand (regexOrPath: RegExp|string) => void
| Expand all the nodes that match the given criteriaexpandAll () => void
| Alias for expand('**')
collapse (regexOrPath: RegExp|string) => void
| Collapse all the nodes that match the given criteriacollapseAll () => void
| Alias for collapse('**')
search (regexOrPath: RegExp|string) => Iterator
| Return and iterator with which is possible to go through all the matched nodes. It scrolls the page to the node and highlights it.object
- The object wrapper element.property
- The wrapper element of a property.key
- The key element of a property.primitive
- The primitive value.primitive--string
- Applied when the primitive is a string.primitive--number
- Applied when the primitive is a number.primitive--boolean
- Applied when the primitive is a boolean.primitive--null
- Applied when the primitive is a null.preview
- The value preview of a property.highlight
- The highlighted value.The appearance of the component can be modified by changing the CSS custom properties
json-viewer {
/* Background, font and indentation */
--background-color: #2a2f3a;
--color: #f8f8f2;
--font-family: Nimbus Mono PS, Courier New, monospace;
--font-size: 1rem;
--line-height: 1.2rem;
--indent-size: 0.5em;
--indentguide-size: 1px;
--indentguide-style: solid;
--indentguide-color: #333;
--indentguide-color-active: #666;
--indentguide: var(--indentguide-size) var(--indentguide-style) var(--indentguide-color);
--indentguide-active: var(--indentguide-size) var(--indentguide-style) var(--indentguide-color-active);
--outline-color: #e0e4e5;
--outline-width: 1px;
--outline-style: dotted;
/* Types colors */
--string-color: #a3eea0;
--number-color: #d19a66;
--boolean-color: #4ba7ef;
--null-color: #df9cf3;
--property-color: #6fb3d2;
/* Collapsed node preview */
--preview-color: #deae8f;
/* Search highlight color */
--highlight-color: #c92a2a;
}
Put the JSON inside the element
<json-viewer>
{ "quiz": { "sport": { "q1": { "question": "Which one is correct team name in NBA?", "options": [ "New York Bulls",
"Los Angeles Kings", "Golden State Warriros", "Huston Rocket" ], "answer": "Huston Rocket" } }, "maths": { "q1": {
"question": "5 + 7 = ?", "options": [ "10", "11", "12", "13" ], "answer": "12" }, "q2": { "question": "12 - 8 = ?",
"options": [ "1", "2", "3", "4" ], "answer": "4" } } } }
</json-viewer>
<json-viewer id="json"></json-viewer>
<script>
document.querySelector('#json').data = { prop1: true, prop2: 'test' };
</script>
const viewer = document.querySelector('#json');
// Expand/collapse/filter
viewer.expand('**.name');
viewer.collapse(/name/);
viewer.filter('test.*.name');
// Search
const searchIterator = viewer.search('value');
// Scrolls to the node and highlight the value
searchIterator.next();
This is an experimental feature and it may change in the future
The rendering of the values can be customized by defining a static method customRenderer
in the custom element class.
The function receives the value and the path of the node and it should return a HTML node or a Lit's TemplateResult
object.
import { JsonViewer } from '@alenaksu/json-viewer/JsonViewer.js';
customElements.define(
'json-viewer',
class extends JsonViewer {
static styles = [
JsonViewer.styles,
css`
a {
color: white;
text-decoration: underline;
}
`
];
static customRenderer(value, path) {
if (typeof value === 'string') {
if (URL.canParse(value)) {
return html`<a href="${value}" target="_blank">${value}</a>`;
} else if (Date.parse(value)) {
return new Date(value).toLocaleString();
}
} else if (typeof value === 'number') {
return value.toFixed(2);
}
return super.customRenderer(value);
}
}
);
The demo can also be run locally with
npm run start
FAQs
[![GitHub release](https://img.shields.io/github/v/release/alenaksu/json-viewer.svg)](https://github.com/alenaksu/json-viewer/releases) [![npm](https://badgen.net/npm/v/@alenaksu/json-viewer)](https://www.npmjs.com/package/@alenaksu/json-viewer) [![downlo
The npm package @alenaksu/json-viewer receives a total of 5,680 weekly downloads. As such, @alenaksu/json-viewer popularity was classified as popular.
We found that @alenaksu/json-viewer 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
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.