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

@sentinelqa/uploader

v0.1.37

Published

Sentinel uploader CLI for CI/CD debugging artifacts

Readme

@sentinelqa/uploader

Low-level Sentinel uploader CLI for Playwright artifacts and hosted Sentinel run links.

@sentinelqa/playwright-reporter is the recommended integration for most teams. Use this package only if you need direct CLI control or custom wrapper behavior.

Install

npm i -D @sentinelqa/uploader

Usage

sentinelqa upload --playwright-json-path test-results/report.json

Direct upload after tests already ran:

npx @sentinelqa/uploader upload --playwright-json-path test-results/report.json

Universal wrapper for custom commands:

npx @sentinelqa/uploader run -- <your test command>

Playwright Failure Context Capture (DOM + Mutation Signals)

Add this helper to capture DOM target state and mutation signals on failures:

import { sentinelCaptureFailureContext } from "@sentinelqa/uploader/playwright";

test.afterEach(async ({ page }, testInfo) => {
  await sentinelCaptureFailureContext(page, testInfo);
});

This writes dom-capture-*.json to test-results/sentinel-dom/ and attaches it to the Playwright report so the uploader can associate it with the correct test.

Environment Variables

  • SENTINEL_TOKEN (optional; required only for uploading into a specific Sentinel workspace)
  • SENTINEL_TEST_EXIT_CODE (optional; set automatically by the wrapper)
  • SENTINEL_REQUEST_TIMEOUT_MS (optional; override API request timeout, default 45000)
  • SENTINEL_UPLOAD_TIMEOUT_MS (optional; override artifact upload timeout, default 120000)

Optional: BYO S3 (Advanced)

Set these to upload directly to your own bucket:

  • SENTINEL_S3_ENDPOINT (optional for AWS)
  • SENTINEL_S3_REGION
  • SENTINEL_S3_BUCKET
  • SENTINEL_S3_PREFIX (optional)
  • SENTINEL_S3_ACCESS_KEY_ID
  • SENTINEL_S3_SECRET_ACCESS_KEY

Troubleshooting

Missing artifacts

  • Ensure Playwright outputs are present:
    • a Playwright JSON report
    • playwright-report/
    • test-results/

401 Unauthorized

  • Check SENTINEL_TOKEN and project permissions if you are uploading into a workspace.

Custom app URL override

  • Custom SENTINEL_URL or APP_URL values are not supported.
  • Sentinel uploads always target https://app.sentinelqa.com.

No CI metadata

  • The uploader detects GitLab, GitHub, CircleCI, or local git metadata.

No failed tests

  • Ensure @playwright/test is installed and the JSON reporter is enabled.

BYO uploads failing

  • Verify SENTINEL_S3_* values and permissions.