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

@open-xchange/codeceptjs-hindsight

v0.1.2

Published

CodeceptJS plugin for reporting test results to Hindsight

Readme

@open-xchange/codeceptjs-hindsight

CodeceptJS plugin that reports test results and performance measurements to Hindsight.

Drop-in replacement for the testMetrics plugin — same public interface, but sends data to the Hindsight HTTP API instead of InfluxDB.

Installation

npm install @open-xchange/codeceptjs-hindsight

Configuration

In your codecept.conf.js:

exports.config = {
  plugins: {
    hindsight: {
      require: '@open-xchange/codeceptjs-hindsight',
      enabled: true,
      url: 'https://hindsight.example.com',
      clientId: 'my-service-account',
      clientSecret: process.env.HINDSIGHT_CLIENT_SECRET,
      tokenEndpoint: 'https://keycloak.example.com/realms/my-realm/protocol/openid-connect/token',
      defaultTags: {
        client: 'my-project',
      },
    },
  },
}

Options

| Option | Required | Description | |--------|----------|-------------| | url | Yes (for API mode) | Hindsight API base URL | | clientId | Yes (for API mode) | OIDC client ID for authentication | | clientSecret | Yes (for API mode) | OIDC client secret | | tokenEndpoint | Yes (for API mode) | Keycloak token endpoint URL | | defaultTags | No | Key-value pairs merged into every request (e.g. client, project) |

When credentials are omitted, the plugin runs in console mode — metrics are collected in memory and printed to stdout after each suite. This is useful for local development.

What gets reported

After each test (event.test.after):

  • Feature name, scenario name, pass/fail/skip state, duration
  • Branch, project, pipeline ID from defaultTags and environment

After each suite (event.suite.after):

  • Buffered performance measurements are flushed as a batch

Performance measurements

Use addPerformanceMeasurement() in your tests — the interface is unchanged from the existing testMetrics plugin:

const hindsight = codeceptjs.container.plugins('hindsight')

hindsight.addPerformanceMeasurement('page_load', [
  { type: 'intField', name: 'duration', value: 1234 },
  { type: 'stringField', name: 'page', value: '/inbox' },
], {
  tags: { cached: 'false' },
})

Authentication

The plugin uses the OIDC client credentials flow. You need a Keycloak service account with access to the Hindsight API audience. The token is cached and automatically refreshed before expiry.

Error handling

API errors and network timeouts are logged as warnings — they never fail the test run.

License

AGPL-3.0-or-later