Zig-Index/registry
The official registry of Zig packages and applications for Zig Index.
The official registry of Zig packages and applications for Zig Index.
repositories/
├── applications/ # Applications built with Zig
│ ├── bun.json
│ ├── tigerbeetle.json
│ └── zig-compiler.json
└── packages/ # Zig libraries and packages
├── capy.json
├── mach.json
├── zig-std.json
└── zls.json
For packages (libraries/modules), create a file in repositories/packages/:
{
"name": "Your Package Name",
"owner": "github-username",
"repo": "repository-name",
"description": "A brief description of your package",
"homepage": "https://your-docs-site.com",
"license": "MIT",
"category": "networking"
}
For applications (tools/software), create a file in repositories/applications/:
{
"name": "Your Application Name",
"owner": "github-username",
"repo": "repository-name",
"description": "A brief description of your application",
"homepage": "https://your-app-site.com",
"license": "MIT",
"category": "development-tools"
}
Submit a PR with your changes. We'll review and merge it!
| Field | Type | Required | Description |
|---|---|---|---|
name |
string | ✅ | Display name of the project |
owner |
string | ✅ | GitHub username or organization |
repo |
string | ✅ | GitHub repository name |
description |
string | ✅ | Brief description (max 200 chars) |
homepage |
string | ❌ | Project website or documentation URL |
license |
string | ❌ | SPDX license identifier (e.g., "MIT", "Apache-2.0") |
category |
string | ❌ | Category for filtering (e.g., "gui", "networking", "game-engine") |
This registry is open source under the MIT License.