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

@d3vpadawann/commit-devil

v1.1.5

Published

Padronização de commits para projetos — commitizen, commitlint, husky

Readme

@d3vPadawann/commit-devil

Padronização de commits para projetos. Configura commitizen, commitlint e husky automaticamente através de um wizard interativo.

Instalação

npm install @d3vPadawann/commit-devil -D

Setup

npx commit-devil init

O wizard vai perguntar:

  1. Escopos do projeto (components, hooks, services, etc.)
  2. Prefixo do Jira (ex: ABDP-)
  3. Padrão do ticket (regex, ex: \d{4})
  4. Ticket obrigatório?
  5. Limite de caracteres do subject e header
  6. Comandos do pre-commit (ex: npx lint-staged)
  7. Comandos do pre-push (ex: npm run test)

Arquivos gerados

| Arquivo | Descrição | | --------------------------- | --------------------------- | | .commit-devilrc.json | Configuração do projeto | | commitlint.config.cjs | Config do commitlint | | .cz-config.cjs | Config do commitizen | | .husky/commit-msg | Hook de validação do commit | | .husky/prepare-commit-msg | Hook do commitizen | | .husky/pre-commit | Hook customizável | | .husky/pre-push | Hook customizável |

Uso

# Via npm script
npm run commit

# Via git (o hook prepare-commit-msg ativa o commitizen)
git commit

Reconfigurar

npx commit-devil init --force

Tipos de commit

| Tipo | Descrição | | ---------- | ---------------------------------- | | feat | Uma nova funcionalidade | | patch | Adição de pequena funcionalidade | | fix | Correção de bug | | docs | Apenas documentação | | style | Formatação (sem mudança de código) | | refactor | Refatoração de código | | perf | Melhoria de performance | | test | Adicionando ou corrigindo testes | | build | Mudanças no build ou dependências | | ci | Mudanças na configuração de CI | | chore | Tarefas de manutenção | | revert | Reverte um commit anterior | | wip | Work in progress | | merge | Merge de branches |

Regras de validação

  • ❌ Subject vazio
  • ❌ Subject contendo apenas o prefixo do ticket (ex: [ABDP-1234])
  • ❌ Tipo de commit inválido
  • ❌ Header excedendo limite de caracteres

Desenvolvimento

# Build
npm run build

# Watch mode
npm run dev

commit-devil