1.0.2 • Published 7 months ago

next-json-view v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

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}
    />
  );
};
1.0.2

7 months ago

1.0.1

7 months ago

1.0.0

7 months ago