npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@voilabs/cli

v1.3.0

Published

GitHub-based Package Manager for Voilabs

Readme

@voilabs/cli

bunx @voilabs/cli login --token <API_KEY>
bunx @voilabs/cli publish
bunx @voilabs/cli install @platform/abc
bunx @voilabs/cli install @platform/abc --version 1.2.3
bunx @voilabs/cli install @platform/abc --key vlk_...
bunx @voilabs/cli install --all
bunx @voilabs/cli list
bunx @voilabs/cli keygen --install-token <salt-okunur PAT>

Registry olarak voilabs/packages kullanılır:

  • main: Build sonrası, kurulmaya hazır paketler
  • raw-main: Build öncesi kaynak snapshot'ları
  • Her iki branch: <paket-adı>/<version>/{...files}

install yalnızca main branch'ini kullanır. --version verilmezse registry'deki en yüksek geçerli semver sürümü seçilir.

installation_key

publish her paketin içine bir voilabs.json yazar:

{
  "name": "@platform/abc",
  "version": "1.2.3",
  "installation_key": "vlk_..."
}
  • Key, kurulum için gereken GitHub token'ını vlk_ önekiyle kodlar. Varsayılan olarak önceki sürümün key'i korunur; ilk yayında oturum token'ından türetilir. Tercih edilen: voilabs publish --install-token <salt-okunur PAT> ile yalnızca registry'yi okuyabilen fine-grained bir PAT gömün.
  • Key'i alan biri voilabs install @platform/abc --key vlk_... ile GitHub hesabı/PAT'i olmadan kurulum yapar.

⚠️ vlk_ yalnızca kodlamadır, şifreleme değildir: key'i paylaşmak, içindeki token'ın erişimini paylaşmaktır. Bu yüzden key'lere salt-okunur PAT gömün.

voilabs-package.json

Her kurulum, proje kökündeki voilabs-package.json dosyasına paketi ve key'ini işler:

{
  "packages": {
    "@platform/abc": { "version": "1.2.3", "installation_key": "vlk_..." }
  }
}

Bu dosyayı başka bir projeye kopyalayıp voilabs install --all çalıştırmak, kayıtlı tüm paketleri kayıtlı sürüm ve key'leriyle kurar. İsteğe bağlı üst seviye installation_key alanı, kaydı olmayan paketler için varsayılan key olarak kullanılır.

list ve keygen

  • voilabs list: registry'deki tüm paketleri, sürümlerini ve her paketin installation_key durumunu gösterir (--key ile de erişilebilir).
  • voilabs keygen [paket]: voilabs.json'ı veya key'i olmayan sürümleri bulur, otomatik key üretip registry'nin main branch'ine yazar. Paketin başka sürümünde key varsa aynı key eksik sürümlere uygulanır; paket tamamen key'sizse --install-token ile verilen (yoksa oturum) token'ından yeni key üretilir. 1.1.0 öncesi yayınlanmış eski paketlere key dağıtmak için idealdir.

Kimlik doğrulama sırası

install için: --keyvoilabs-package.json (paket kaydı → proje geneli) → ~/.voilabs_rcVOILABS_TOKEN/GITHUB_TOKEN/GH_TOKENgh auth token → git credential helper (örn. Git Credential Manager).

VOILABS_REGISTRY ortam değişkeni, registry URL'ini geçersiz kılar (test ve self-hosting için).

git kurulu olmayan ortamlar

install ve list, ortamda git yoksa (örn. minimal Docker/CI imajları) registry'yi otomatik olarak GitHub API tarball'ı üzerinden indirir; ek kurulum gerekmez. publish ve keygen için git zorunludur (apt-get install -y git / apk add git).