Simple, open-source web UI for browsing SOVD (Service-Oriented Vehicle Diagnostics) entity trees via discovery endpoints.
sovd_web_ui is a lightweight single-page application that connects to a SOVD server and visualizes the entity hierarchy. It provides:
- Server Connection Dialog - Enter the URL of your SOVD server (supports both
http://ip:portandip:portformats) - Entity Tree Sidebar - Browse the hierarchical structure of SOVD entities with lazy-loading
- Entity Detail Panel - View raw JSON details of any selected entity
This tool is designed for developers and integrators working with SOVD-compatible systems who need a quick way to explore and debug the entity structure.
Early prototype / work in progress
This is an open source project for exploring SOVD entity discovery. APIs and features may change as the project evolves.
- Exploring SOVD entity hierarchy on a connected server
- Debugging SOVD discovery endpoints
- Quick inspection of entity metadata and structure
- Learning about SOVD entity models
docker build -t sovd_web_ui .
docker run -p 8080:80 sovd_web_uiThen open http://localhost:8080 in your browser.
# Install dependencies
npm install
# Start development server
npm run dev
# Build for production
npm run build
# Preview production build
npm run preview- Open the application in your browser
- Enter the SOVD server URL in the connection dialog (e.g.,
192.168.1.100:8080orhttp://localhost:3000) - Click "Connect" to establish connection
- Browse the entity tree in the left sidebar
- Click on any entity to view its details in the main panel
- React 19 - UI framework
- TypeScript - Type safety
- Vite - Build tool
- TailwindCSS 4 - Styling
- shadcn/ui - UI components
- Zustand - State management
- lucide-react - Icons
Contributions and feedback are welcome! Please read CONTRIBUTING.md for guidelines.
By contributing, you agree to follow the CODE_OF_CONDUCT.md.
If you discover a security vulnerability, please follow the process in SECURITY.md.
This project is licensed under the Apache License 2.0. See the LICENSE file for details.