An open API service indexing awesome lists of open source software.

https://github.com/bgpkit/labs

Ideas and experiments.
https://github.com/bgpkit/labs

Last synced: about 2 months ago
JSON representation

Ideas and experiments.

Awesome Lists containing this project

README

          

# BGPKIT Labs

Experimental tools and projects for the BGP and routing research community, available at [labs.bgpkit.com](https://labs.bgpkit.com).

## Structure

```
labs/
├── homepage/ # labs.bgpkit.com — showcase site (Astro + Cloudflare Workers)
└── projects/
├── mrt-explorer/ # mrt-explorer.labs.bgpkit.com — browser-based MRT file explorer (WASM)
└── rov-check/ # rov.labs.bgpkit.com — RPKI ROV validation checker (SvelteKit)
```

## Projects

### [MRT Explorer](https://mrt-explorer.labs.bgpkit.com)
Browse and inspect MRT files directly in your browser, powered by bgpkit-parser compiled to WASM.

### [ROV Check](https://rov.labs.bgpkit.com)
Check Route Origin Validation status for any prefix or ASN using live RPKI data.

## Development

Each project is a standalone Cloudflare Workers app with its own `wrangler.toml` and `package.json`.

```bash
# Run a project locally
cd homepage # or projects/mrt-explorer, projects/rov-check
npm install
npm run dev

# Deploy
npm run deploy
```