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

cypress-concurrently

v0.0.8

Published

A TypeScript library for running Cypress tests concurrently with detailed logging

Readme

cypress-concurrently

CI

Run Cypress specs in parallel using multiple worker processes.

Project goals

cypress-concurrently is designed to reduce end-to-end feedback time by running specs concurrently while keeping the CLI simple for local and CI usage with sensible defaults. It also aims to provide clear execution visibility across discovery, thread activity, and final summaries, and to stay compatible with common Cypress project layouts and configurations.

Requirements

  • Node.js >=18
  • Cypress >=13 <16

Install

npm install cypress cypress-concurrently

Quick start

  1. Install dependencies:
npm install cypress cypress-concurrently
  1. Run all specs in your Cypress e2e folder with 3 workers:
npx cypress-concurrently threads=3 testPath="./cypress/e2e"
  1. Optionally filter specs with a pattern:
npx cypress-concurrently threads=3 testPath="./cypress/e2e" spec="**/smoke*.cy.ts"
  1. In CI, tune startup pressure if needed:
npx cypress-concurrently threads=4 delay=3 testPath="./cypress/e2e"

CLI options

  • threads=<number>: parallel workers (1-20). If omitted, auto-detected (max 4).
  • testPath="<path>": test directory or file.
  • spec="<pattern>": spec glob filter.
  • config="<path>": Cypress config file path.
  • browser="<name>": browser (default: electron).
  • headless=<boolean>: run headless (default: true).
  • delay=<seconds>: delay between worker starts (default: 2).

Spec pattern priority

  1. CLI spec=...
  2. Cypress config e2e.specPattern
  3. Fallback **/*.{spec,test}.{js,ts,jsx,tsx}

Programmatic usage

import { CypressConcurrently } from "cypress-concurrently"

const results = await CypressConcurrently.run({
  testPath: "./cypress/e2e",
  threads: 3,
})

Example output

🚀 Cypress Concurrently
Starting concurrent test execution...

Test Discovery Phase

Configuration:
   Test Path: ./cypress/e2e
   Threads: 2
   Delay: 2s
   Browser: electron
   Headless: true

Execution Phase

Execution Plan:
   Total specs: 2
   Max threads: 2
   Startup delay: 2s between threads
   Browser: electron
   Headless: true
   Platform: win32

[Thread 1] Starting: cypress/e2e/smoke.cy.js
[Thread 2] Starting: cypress/e2e/smoke-second.cy.js
✅ [Thread 1] Completed: cypress/e2e/smoke.cy.js (28796ms)
Progress [1/2] ✅ 1 ❌ 0
✅ [Thread 2] Completed: cypress/e2e/smoke-second.cy.js (26797ms)
Progress [2/2] ✅ 2 ❌ 0

------------------------------------------------------------------------
Run Finished
------------------------------------------------------------------------

Spec Files:
  Spec                         Result  Passing  Failing  Pending  Duration
  -------------------------------------------------------------------------
  smoke.cy.js                  PASS    6        0        0        0m 28s
  smoke-second.cy.js           PASS    5        0        0        0m 26s

Results:
  ✅ 11 passing
  ❌ 0 failing
  ⏸ 0 pending
  2 spec files
  Finished in 0m 28s
  Threads: 2
  Platform: win32

------------------------------------------------------------------------
✅ All tests passed.

License

MIT