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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@be-tech/git-manager

v1.0.2

Published

CLI manager for github

Readme

version-manager (Go Version)

Com esta ferramenta você pode controlar o versionamento Git dos seus projetos.

Como instalar:

Usando Go Install

go install github.com/be-tech/version-manager@latest

Compilando manualmente

# Clone o repositório
git clone https://github.com/be-tech/version-manager.git

# Entre no diretório
cd version-manager

# Compile o projeto
go build -o v-manager

# Mova o binário para um diretório no seu PATH (opcional)
sudo mv v-manager /usr/local/bin/

Como usar:

Basta digitar:

v-manager

Configuração de Tokens para Integração com GitHub/GitLab

Para criar releases no GitHub ou GitLab, você precisa configurar o token de acesso:

  1. Arquivo .env: Crie um arquivo .env no diretório onde vai executar a ferramenta com o seguinte conteúdo:

    # Para GitHub
    GITHUB_TOKEN=seu_token_aqui
       
    # Para GitLab
    GITLAB_TOKEN=seu_token_aqui
  2. Variáveis de ambiente: Alternativamente, defina as variáveis de ambiente diretamente:

    # Para GitHub
    export GITHUB_TOKEN=seu_token_aqui
       
    # Para GitLab
    export GITLAB_TOKEN=seu_token_aqui
  3. Permissões necessárias:

    • Para GitHub: O token precisa ter permissão de repo completo para criar releases
    • Para GitLab: O token precisa ter permissão de api para criar releases

Funcionalidades

  • Seleção de repositório remoto
  • Seleção de branches de origem e destino para merge
  • Opção de push automático para o repositório remoto
  • Remoção automática de branches de origem após merge
  • Gerenciamento de tags de versão (major, minor, patch, pre-releases)
  • Criação de releases no GitHub/GitLab
  • Suporte a arquivos .env para configuração de tokens de acesso

Requisitos

  • Git instalado e configurado
  • Go 1.16 ou superior (apenas para compilação)