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

@houndly/newman-reporter-houndly

v1.0.0

Published

Houndly reporter for Newman/Postman

Downloads

102

Readme

@houndly/newman-reporter-houndly

Manda os resultados de uma coleção do Postman rodada pelo Newman para o Houndly: cada request vira uma execução no caso de teste correspondente, com erro e duração.

npm install --save-dev @houndly/newman-reporter-houndly

O nome do pacote segue a convenção do Newman, não a nossa: ele resolve um reporter chamado houndly para @houndly/newman-reporter-houndly. É por isso que na linha de comando ele se chama @houndly/houndly.

Configuração

newman run colecao.json -r cli,@houndly/houndly \
  --reporter-@houndly/houndly-apiUrl https://acme.moraylab.ai \
  --reporter-@houndly/houndly-subdomain acme \
  --reporter-@houndly/houndly-projectKey STUDIO \
  --reporter-@houndly/houndly-authToken "$HOUNDLY_AUTH_TOKEN"

Em CI costuma sair mais limpo pelo ambiente — o reporter lê estas variáveis quando a opção correspondente não é passada:

export HOUNDLY_API_URL=https://acme.moraylab.ai
export HOUNDLY_SUBDOMAIN=acme
export HOUNDLY_PROJECT_KEY=STUDIO
export HOUNDLY_AUTH_TOKEN=hnd_...
export HOUNDLY_TEST_RUN_ID=...   # opcional

newman run colecao.json -r cli,@houndly/houndly

| Opção | Variável | Obrigatório | O que é | |---|---|---|---| | apiUrl | HOUNDLY_API_URL | sim | Endereço do workspace, https://acme.moraylab.ai | | subdomain | HOUNDLY_SUBDOMAIN | sim, em qualquer Houndly implantado | O subdomínio do workspace, acme | | projectKey | HOUNDLY_PROJECT_KEY | sim | A chave do projeto, STUDIO | | authToken | HOUNDLY_AUTH_TOKEN | sim | Chave de API pessoal, criada em Integrações → Chaves de API pessoais | | testRunId | HOUNDLY_TEST_RUN_ID | não | Manda os resultados para uma execução que já existe | | executor | — | não | Quem rodou: GitHub Actions, Jenkins, Local | | environment | — | não | staging, production | | branch, commit | — | não | De onde veio o código | | debug | — | não | Imprime o que foi enviado e o que foi ignorado |

O subdomain não é opcional na prática. Cada workspace do Houndly tem seu próprio banco, e atrás de um proxy a API não deduz qual é pelo host. Faltando esse campo a resposta é 401 Tenant database context not found — que parece erro de token, e não é.

Marcar os requests

O reporter procura o identificador no nome do request, na coleção:

@houndly:STUDIO-TC-0182 POST /pedidos devolve 201
@tc:STUDIO-TC-0182 POST /pedidos devolve 201

Vale o id que aparece na tela (STUDIO-TC-0182) ou o id interno do caso, o cmt8foic30005u094mzx370xo que vem da API — esse, exatamente como está.

Request sem marcador é descartado, porque não há a que ligá-lo e resultado no caso errado ninguém percebe. Com debug ligado o reporter diz quais ignorou.

O resultado é do request inteiro: se qualquer assertion dele falhar, o caso correspondente é marcado como falha, com a mensagem da última que falhou.

Licença

MIT