JSONWebViewer is a web application built with Vite for viewing JSON files directly in your web browser. It allows you to visualize and explore JSON data without the need for server-side processing. This project provides a lightweight and client-side solution for working with JSON data.
Before you begin, ensure you have met the following requirements:
- Node.js: This project requires Node.js to be installed on your machine.
You will also need one of the following package managers to install project dependencies:
- npm: The Node.js package manager, included with Node.js installation.
- Yarn: A fast and reliable package manager for Node.js.
- pnpm: A fast, disk space-efficient package manager for Node.js.
Use the package manager of your choice (we use pnpm) to install the project's dependencies:
pnpm install
npm install
yarn install
Refer to the respective package manager's documentation for more details on installation and usage.
- Clone the repository:
git clone https://github.com/aragaosousabr/JSONWebViewer.git
- Change the directory to the project folder:
cd JSONWebViewer
- Install the project dependencies:
pnpm install
- Start the development server:
pnpm dev
# or
yarn dev
# or
npm run dev
- Open your web browser and go to http://localhost:5173. (default port)