| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A fast, release-aware web UI for exploring Nokia Event-Driven Automation (EDA) Custom Resource Definitions.
Browse CRD catalogs across EDA releases, inspect OpenAPI schemas, validate YAML, compare versions, and visualize resource dependencies.
Important
Community project. EDA Resource Browser is community-maintained and not affiliated with or endorsed by Nokia. CRD manifests are bundled from public release artifacts for reference and exploration.
Working with Nokia EDA means navigating hundreds of Custom Resource Definitions across multiple release trains. Official docs are comprehensive, but day-to-day tasks — finding a field, validating a manifest, or understanding what changed between releases — need a purpose-built explorer.
EDA Resource Browser fills that gap:
| Catalog & search | CRD schema detail | Release comparison |
|---|---|---|
![]() |
![]() |
![]() |
| YAML validation | Dependency map | Release notes |
|---|---|---|
![]() |
![]() |
![]() |
The home page is a release-grouped catalog of every CRD in the selected EDA release.
Search inside CRD schemas across an entire release — find fields by name, path, or description without opening each resource individually.
A Monaco-powered editor validates multi-document YAML bundles against live CRD schemas.
Compare two EDA releases side by side and generate a bulk diff report.
An interactive intent-topology graph built from CRD schema cross-references.
Auto-generated release notes highlight what changed between EDA versions — new resources, deprecations, field modifications, and operational impact summaries.
| Layer | Technology |
|---|---|
| Framework | SvelteKit 2 + Svelte 5 |
| Build | Vite 7 |
| Styling | Tailwind CSS 4 |
| Language | TypeScript 5 |
| Schema validation | AJV 8 |
| Editor | Monaco Editor |
| Graphs | @xyflow/svelte + D3 |
| Deployment | Cloudflare Pages (primary), Vercel (optional) |
| Testing | Vitest + Playwright |
git clone https://github.com/fullstopdev/resource-browser.git
cd resource-browser
npm installnpm run devOpen http://localhost:5173. The catalog reads CRD data from static/resources/<release>/ — no external API required for browsing.
npm run prepare
npm run build
npm run previewThe prebuild hook generates the sitemap and release notes automatically.
Copy .env.example to .env and adjust as needed:
cp .env.example .env| Variable | Default | Description |
|---|---|---|
| ADAPTER | cloudflare | Set to vercel for Vercel deployment |
Release list is configured in src/lib/releases.yaml. Each entry maps a release name to its folder under static/resources/.
npm run build:cloudflare
npm run deploy:cloudflareOr connect the repository in the Cloudflare dashboard — build command: npm run build:cloudflare, output directory: .svelte-kit/cloudflare.
ADAPTER=vercel npm run build:vercelresource-browser/ ├── src/ │ ├── routes/ # SvelteKit pages │ │ ├── +page.svelte # Home catalog │ │ ├── [name]/[version]/ # CRD detail pages │ │ ├── comparison/ # Release diff tool │ │ ├── dependency-map/ # Interactive topology graph │ │ ├── validate-yaml/ # YAML validator │ │ ├── spec-search/ # Schema field search │ │ └── release-notes/ # Auto-generated changelogs │ └── lib/ │ ├── comparison/ # Diff engine & UI components │ ├── dependency-map/ # Graph builder & layout │ ├── validate-bundle/ # Monaco editor, AJV validation │ ├── manifest/ # CRD manifest loaders │ └── releases.yaml # Release configuration ├── static/ │ └── resources/<release>/ # Bundled CRD YAML + manifest.json ├── scripts/ # Sitemap and release-notes generators ├── wrangler.toml # Cloudflare Pages configuration └── svelte.config.js # Adapter selection (Cloudflare / Vercel)
flowchart TB
subgraph Client["Browser (SvelteKit SPA)"]
Catalog["Catalog & Search"]
Detail["CRD Detail + Schema Tree"]
Tools["Spec Search · Comparison · Validate · Dep Map"]
end
subgraph Static["Static Assets"]
YAML["static/resources/<release>/*.yaml"]
Manifest["manifest.json per release"]
Graph["dependency-graph.json"]
end
Catalog --> Manifest
Detail --> YAML
Tools --> YAML
Tools --> Graph
Data flow:
| Command | Description |
|---|---|
| npm run dev | Vite dev server with hot reload |
| npm run build | Production build (default Cloudflare adapter) |
| npm run build:cloudflare | Cloudflare Pages build |
| npm run build:vercel | Vercel build |
| npm run check | TypeScript / Svelte type checking |
| npm run lint | Prettier + ESLint |
| npm run test | Vitest unit tests + Playwright e2e |
| npm run format | Auto-format with Prettier |
npm run test:unit # Vitest (client + server projects)
npm run test:e2e # Playwright end-to-end
npm run test # BothContributions are welcome! To get started:
Please keep PRs focused and UI-polished. For new EDA releases, include the manifest and a note in the PR description.
EDA Resource Browser is distributed under the Apache License 2.0.
You are free to use, modify, and distribute this software in compliance with the license terms.
Built for the Nokia EDA community.
| Back | FazBrowse Home | New Git URL |