Prerequisites

Make sure you have the following installed:
  • Node.js (LTS version recommended)
  • npm (comes with Node.js)

Quick Setup

  1. Fork and clone the repository:
    git clone https://github.com/YOUR_USERNAME/inspector.git
    cd inspector
    
  2. Install dependencies:
    npm install
    
  3. Start development server:
    npm run dev
    
    For Windows users:
    npm run dev:windows
    
  4. Open your browser to http://localhost:3000

Development Commands

  • Run tests: npm test
  • Format code: npm run prettier-fix
  • Build project: npm run build

Next Steps