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

innovationhub-cli

v2.1.0

Published

CLI oficial da InnovationHub para inicializar projetos.

Readme

InnovationHub CLI

Ferramenta oficial para inicializar projetos Backend na InnovationHub.

Instalação

Para usar sem instalar (recomendado):

npx innovationhub-cli

Para instalar globalmente:

npm install -g innovationhub-cli

Como Usar

Modo Interativo

Execute o comando e siga os passos:

innovationhub

O CLI vai guiar você por:

  1. Nome do Projeto — nome da pasta
  2. Stack — NestJS ou Python (FastAPI)
  3. Addons — recursos opcionais (variam por stack)
  4. Resumo — revise e confirme
  5. Dependências — instalar automaticamente (opcional)

Modo Direto (CLI Flags)

Para automação ou uso rápido via flags:

# Criar projeto completo
innovationhub --name meu-api --stack nest --addons cloudinary,.github --install

# Mínimo, sem addons e sem confirmações
innovationhub -n meu-api -s nest -y

# Python com todos os addons
innovationhub -n minha-api -s python -a cloudinary,.github,pre-commit -i -y

Flags Disponíveis

| Flag | Short | Descrição | | ------------------ | ----- | ------------------------------------- | | --name <nome> | -n | Nome do projeto | | --stack <stack> | -s | Stack (nest ou python) | | --addons <lista> | -a | Addons separados por vírgula | | --install | -i | Instalar dependências automaticamente | | --yes | -y | Pular confirmações | | --version | -v | Mostrar versão | | --help | -h | Mostrar ajuda |

Dica: as flags são opcionais — se faltar alguma, o CLI pergunta interativamente.

Stacks Disponíveis

| Stack | Descrição | | -------------------- | ------------------------------------------------- | | NestJS | Backend Node.js com TypeScript, TypeORM, JWT Auth | | Python (FastAPI) | Backend Python com SQLAlchemy, Alembic, JWT Auth |

Criando Novas Stacks

Para adicionar uma nova stack, crie uma pasta em templates/{nome}/ com um template.json:

{
  "label": "Nome Exibido",
  "description": "Descrição curta da stack"
}

O CLI descobre as stacks automaticamente — sem precisar alterar o código.

Addons por Stack

Cada stack possui addons específicos. Ao selecionar uma stack, o CLI mostra apenas os addons disponíveis para ela.

NestJS:

  • Cloudinary (Upload de Imagens)
  • GitHub Actions (CI/CD)
  • Husky (Lint & Commits)

Python (FastAPI):

  • Cloudinary (Upload de Imagens)
  • GitHub Actions (CI/CD)
  • Pre-commit (Lint & Formatação)

Criando Novos Addons

Para adicionar um novo addon a uma stack:

  1. Crie uma pasta em templates/{stack}/addons/{nome-do-addon}/
  2. Adicione a entrada no templates/{stack}/addons/addons.json:
    {
      "name": "nome-do-addon",
      "label": "Nome Amigável",
      "dest": "caminho/destino"
    }

O CLI descobre os addons automaticamente — sem precisar alterar o código.

Desenvolvimento

# Clone este repositório
git clone https://github.com/ProHub-Innovation/innovationhub-cli.git
cd innovationhub-cli

# Instale as dependências
npm install

# Link globalmente para testar
npm link

# Rode o comando
innovationhub

Publicação

# Atualizar versão (semver)
npm version patch|minor|major

# Login no NPM (primeira vez)
npm login

# Publicar
npm publish --access public

Os usuários que usam npx innovationhub-cli pegarão a nova versão automaticamente.

Autor

Desenvolvido por Guilherme Araújo · Victor Chagas ·

Liga Acadêmica de Empreendedorismo Innovation Hub

Licença

MIT © 2026 Innovation Hub