next-json-view
TypeScript icon, indicating that this package has built-in type declarations

1.0.2 • Public • Published

Next Json Viewer

A canvas-based JSON visualizer component for Next.js and React applications.

Installation

npm install next-json-view

Usage

import { JSONCanvasVisualizer } from 'next-json-view';

const MyComponent = () => {
  const data = {
    name: "John Doe",
    age: 30
  };

  return (
    <JSONCanvasVisualizer 
      data={data}
      width={800}
      height={600}
    />
  );
};

Package Sidebar

Install

npm i next-json-view

Weekly Downloads

5

Version

1.0.2

License

MIT

Unpacked Size

19.4 kB

Total Files

11

Last publish

Collaborators

  • hacimertgokhan