Skip to main content

7 docs tagged with "publishing"

View all tags

Advanced Publishing Topics

This page covers patterns used by mature libraries and OSS projects for reliable, modern package publishing.

Package Publishing

Publishing packages is how you share reusable code — whether with the open-source community on npm, within your organization via private registries, or across projects in a monorepo.

Private Packages & Registries

Not every package belongs on the public npm registry. Internal utilities, shared configs, and proprietary code need private distribution channels.

Publishing from a Monorepo

Publishing multiple packages from a monorepo adds complexity: coordinating versions, managing interdependencies, and automating releases across packages.

Publishing to GitHub Packages

GitHub Packages provides an npm registry tightly integrated with your GitHub repositories. It's ideal for organization-internal packages and packages tied to specific repos.

Versioning

Good versioning communicates intent to consumers. It tells them whether an update is safe to adopt or requires migration work.