# bpfvv **Repository Path**: mirrors_libbpf/bpfvv ## Basic Information - **Project Name**: bpfvv - **Description**: No description available - **Primary Language**: Unknown - **License**: BSD-2-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-04-02 - **Last Updated**: 2025-08-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README > [!WARNING] > The bpfvv app is in early stages of development, and you should expect > bugs, UI inconveniences and significant changes from week to week. > > If you're working with BPF and you think this tool (or a better > version of it) would be useful, feel free to use it and don't be shy > to report issues and request features via github. Thanks! [![CI](https://github.com/libbpf/bpfvv/actions/workflows/ci.yml/badge.svg)](https://github.com/libbpf/bpfvv/actions/workflows/ci.yml) **bpfvv** stands for BPF Verifier Visualizer https://libbpf.github.io/bpfvv/ This project is an experiment about visualizing Linux Kernel BPF verifier log to help BPF programmers with debugging verification failures. The user can load a text file, and the app will attempt to parse it as a verifier log. Successfully parsed lines produce a state which is then visualized in the UI. You can think of this as a primitive debugger UI, except it interprets a log and not a runtime state of a program. ## Development - Fork the website repo: https://github.com/libbpf/bpfvv.git - Clone your fork: - `git clone https://github.com//bpfvv.git` - Setup node modules: - `npm install` - Develop the app: - `npm start` - Build the app for static testing: - `npm run build` - Serve the statically built app: - `npm run serve` - Format your code: - `npm run format` - If everything is OK, push your branch, create a PR. --- This is a self-contained web app that runs entirely on the client side. There is no backend server. Once loaded, it operates within the browser. * To learn more about BPF visit https://ebpf.io/ * See also: https://github.com/eddyz87/log2dot