npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

view-json-react

v1.1.1

Published

Welcome to the JsonViewer component library! This React-based tool is designed to render JSON data in a beautifully structured, collapsible format. It offers a convenient and intuitive way to visualize JSON structures, with features that enhance both func

Downloads

180

Readme

JsonViewer Component Library

Welcome to the JsonViewer component library! This React-based tool is designed to render JSON data in a beautifully structured, collapsible format. It offers a convenient and intuitive way to visualize JSON structures, with features that enhance both functionality and user experience.

Features

  • Collapsible JSON View: Toggle visibility for sections of your JSON data for improved readability.
  • Customizable Expansion Level: Define the initial expansion level to tailor the display of your JSON data.
  • Copy Functionality: Enable users to copy data elements directly from the viewer.
  • Custom Styling: Style the JSON viewer to seamlessly integrate with your application's aesthetics.
  • Root Name Customization: Assign a custom name to the root node of your JSON structure for clearer representation.

Installation

Install the JsonViewer component library with npm:

npm install view-json-react

Or with Yarn:

yarn add view-json-react

Usage

Incorporate the JsonViewer component into your React application like so:

import React from 'react';
import { JsonViewer } from 'view-json-react';

const App = () => {
  const jsonData = {
    /* your JSON data */
  };

  return <JsonViewer data={jsonData} expandLevel={1} />;
};

export default App;

Props

The JsonViewer component accepts the following props:

  • data (required): The JSON data to visualize.
  • rootName (optional): Name for the root node. No root name if not specified.
  • style (optional): CSS properties for custom styling.
  • expandLevel (optional, default: 0): Initial JSON structure expansion level.
  • onCopy (optional): Callback for the copy action.

Customization

Styling

Apply custom styles via the style prop:

<JsonViewer
  data={yourData}
  style={{ backgroundColor: '#282c34', color: '#61dafb' }}
/>

Copy Functionality

Enable data copying with the onCopy prop:

<JsonViewer
  data={yourData}
  onCopy={copyData => console.log('Copied data:', copyData)}
/>

Contributing

We welcome contributions! Feel free to open an issue or submit a pull request for any bugs, feature requests, or improvements.

License

JsonViewer is made available under the MIT License. See the LICENSE file for more details.