Packages & Container Registry API
The Unizo Packages & Container Registry API provides a unified interface for package management and container registries.
Supported Platforms
Package Registries
- npm
- PyPI
- Maven Central
- NuGet
Container Registries
- Docker Hub
- Amazon ECR
- Google Container Registry
Quick Example
import { Unizo } from '@unizo/sdk';
const unizo = new Unizo({ apiKey: 'your_api_key' });
// List packages
const packages = await unizo.packages.list({
provider: 'npm',
organization: 'my-org'
});