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

glob-sort

v1.1.2

Published

Glob files and sort them in a custom order — by numeric folder prefixes and your own string/regex rules. Zero dependencies. Ideal for controlling test execution order in Cypress, Playwright, or Vitest.

Readme

glob-sort

Glob files and sort them in a custom order. A zero-dependency glob utility that sorts matched file paths by numeric folder prefixes (01-, 02-) and your own string or regex ordering rules, with an alphabetical fallback.

Perfect for controlling test execution order in Cypress, Playwright, Vitest, Jest, or any test runner that takes a glob pattern — fs.glob, fast-glob, and globby all return paths in filesystem/alphabetical order, with no way to say "run setup first, delete last."

Features

  • Numeric prefix sorting: Automatically sorts folders and files with numeric prefixes (e.g., 01-, 02-)
  • Custom sort order: Define ordering rules using strings or regex patterns
  • Alphabetical fallback: Falls back to alphabetical sorting when no rules match
  • Path-aware: Sorts intelligently at each folder level in the path hierarchy
  • Sync and async: sortedGlob() and sortedGlobSync() — use the sync one in config files
  • TypeScript support: Fully typed, ESM
  • Zero dependencies: Uses Node.js native fs.promises.glob

Installation

npm install glob-sort
# or
pnpm add glob-sort
# or
yarn add glob-sort

Requirements: Node.js 22+ (uses native fs.promises.glob)

Quick Start

import { sortedGlob } from 'glob-sort'

// With custom ordering rules
const sortedSpecs = await sortedGlob('cypress/tests/**/*.spec.ts', {
  sortOrder: ['setup', 'new', 'edit', 'delete', 'view'],
})

Usage

Example: Cypress

import { sortedGlob } from 'glob-sort'

const specs = await sortedGlob('cypress/tests/**/*.spec*', {
  sortOrder: [
    // run in this order (anything not matching will come after, alphabetically)
    'setup',              // Exact match (case-insensitive)
    /new(?!-special)/i,   // e.g. "new.spec" before "new-special.spec"
    'new',
    'edit',
    /^delete/i,           // starts with "delete"
    /^(?!.*history)/i,    // does not contain "history" (place last in each folder)
    'view',
  ],
})

Example Cypress Configuration

import { defineConfig } from 'cypress'
import { sortedGlobSync } from 'glob-sort'

export default defineConfig({
  e2e: {
    specPattern: sortedGlobSync('cypress/tests/**/*.spec*', {
      sortOrder: ['setup', 'new', 'edit', /^delete.*/, 'view'],
    }),
    // ...other config
  },
})

Example Playwright Configuration

import { defineConfig } from '@playwright/test'
import { sortedGlobSync } from 'glob-sort'

export default defineConfig({
  // Playwright runs files in the order listed when fullyParallel is off
  testMatch: sortedGlobSync('tests/**/*.spec.ts', {
    sortOrder: ['setup', 'new', 'edit', /^delete/i],
  }),
})

How It Works

The sorting algorithm applies three levels of ordering at each folder depth:

  1. Numeric prefix priority: Folders/files starting with numbers (e.g., 01-, 02-) sort numerically first
  2. Custom sort order: Matches against your sortOrder array in the order specified
    • String rules: Match case-insensitively if the string appears anywhere in the filename
    • Regex rules: Test against the filename using the provided pattern
  3. Alphabetical fallback: Items that don't match any rules sort alphabetically

Detailed Example

Given this configuration:

const specs = sortedGlobSync('cypress/tests/**/*.spec.ts', {
  sortOrder: [
    'setup',
    'booking',
    'entree',
    'appetizer',
    'user',
    /^(?!.*history)/i,   // Exclude "history" (pushes to end)
    /new(?!-?special)/i, // "new" before "new-special"
    'new',
    'edit',
    'view',
    'print',
  ],
})
01-widget-cards/
    booking-calendar.spec.ts
    entrees.spec.ts
    setup.spec.ts
    upcoming-bookings.spec.tsx
02-table-pages/
    01-entree-dinner/
        entree-dinner-table.spec.ts
        entree-flavors-table.spec.tsx
    02-booking/
        bookings-history-table.spec.ts
        bookings-table.spec.tsx
    customers-table.spec.ts
    entree-lunch-table.spec.ts
    users-table.spec.ts
03-view-pages/
    print-booking.spec.ts
    print-entree-dinner.spec.ts
    setup.spec.ts
    view-appetizer-count.spec.ts
    view-appetizer-supplier.spec.ts
    view-booking.spec.ts
    view-entree-dinner.spec.ts
    view-entree-lunch.spec.ts
    view-user.spec.ts
04-forms/
    booking-form/
        clone-booking.spec.ts
        edit-booking.spec.ts
        new-booking.spec.ts
        new-special-booking.spec.ts
        setup.spec.ts
    entree-dinner/
        edit-entree-dinner.spec.ts
        new-entree-dinner.spec.ts
    entree-lunch/
        edit-entree-lunch.spec.ts
        new-entree-lunch.spec.ts
    user/
        edit-user.spec.ts
    cake-frosting-input.spec.ts
    cake-order-input.spec.ts
misc-components/
    booking-status.spec.ts
    layout.spec.ts
    site-info-button.spec.ts
    user-info-button.spec.ts
01-widget-cards/
+-  setup.spec.tsx
+-  booking-calendar.spec.ts
+-  upcoming-bookings.spec.tsx
+-  entrees.spec.ts
02-table-pages/
    01-entree-dinner/
        entree-dinner-table.spec.ts
        entree-flavors-table.spec.tsx
    02-booking/
+-      bookings-table.spec.tsx
+-      bookings-history-table.spec.ts
+-  entree-lunch-table.spec.ts
+-  users-table.spec.ts
+-  customers-table.spec.ts
03-view-pages/
+-  setup.spec.tsx
+-  view-booking.spec.ts
+-  print-booking.spec.ts
+-  view-entree-dinner.spec.ts
+-  view-entree-lunch.spec.ts
+-  print-entree-dinner.spec.ts
+-  view-appetizer-count.spec.ts
+-  view-appetizer-supplier.spec.ts
    view-user.spec.ts
04-forms/
    booking-form/
+-      setup.spec.tsx
+-      new-booking.spec.ts
+-      new-special-booking.spec.ts
+-      edit-booking.spec.ts
+-      clone-booking.spec.ts
    entree-dinner/
+-      new-entree-dinner.spec.ts
+-      edit-entree-dinner.spec.ts
    entree-lunch/
+-      new-entree-lunch.spec.ts
+-      edit-entree-lunch.spec.ts
    user/
        edit-user.spec.ts
    cake-frosting-input.spec.ts
    cake-order-input.spec.ts
misc-components/
    booking-status.spec.ts
+-  user-info-button.spec.ts
+-  layout.spec.ts
+-  site-info-button.spec.ts
01-widget-cards/setup.spec.ts
01-widget-cards/booking-calendar.spec.ts
01-widget-cards/upcoming-bookings.spec.tsx
01-widget-cards/entrees.spec.ts
02-table-pages/01-entree-dinner/entree-dinner-table.spec.ts
02-table-pages/01-entree-dinner/entree-flavors-table.spec.tsx
02-table-pages/02-booking/bookings-table.spec.tsx
02-table-pages/02-booking/bookings-history-table.spec.ts
02-table-pages/entree-lunch-table.spec.ts
02-table-pages/users-table.spec.ts
02-table-pages/customers-table.spec.ts
03-view-pages/setup.spec.ts
03-view-pages/view-booking.spec.ts
03-view-pages/print-booking.spec.ts
03-view-pages/view-entree-dinner.spec.ts
03-view-pages/view-entree-lunch.spec.ts
03-view-pages/print-entree-dinner.spec.ts
03-view-pages/view-appetizer-count.spec.ts
03-view-pages/view-appetizer-supplier.spec.ts
03-view-pages/view-user.spec.ts
04-forms/booking-form/setup.spec.ts
04-forms/booking-form/new-booking.spec.ts
04-forms/booking-form/new-special-booking.spec.ts
04-forms/booking-form/edit-booking.spec.ts
04-forms/booking-form/clone-booking.spec.ts
04-forms/entree-dinner/new-entree-dinner.spec.ts
04-forms/entree-dinner/edit-entree-dinner.spec.ts
04-forms/entree-lunch/new-entree-lunch.spec.ts
04-forms/entree-lunch/edit-entree-lunch.spec.ts
04-forms/user/edit-user.spec.ts
04-forms/cake-frosting-input.spec.ts
04-forms/cake-order-input.spec.ts
misc-components/booking-status.spec.ts
misc-components/user-info-button.spec.ts
misc-components/layout.spec.ts
misc-components/site-info-button.spec.ts

API

sortedGlob(pattern, options?)

Returns a Promise that resolves to an array of sorted file paths.

sortedGlobSync(pattern, options?)

Returns an array of sorted file paths.

Parameters

  • pattern (string | string[]): Glob pattern(s) to match files (e.g., 'cypress/tests/**/*.spec.ts*')
  • options (object, optional): Extends all Node.js glob options with:
    • sortOrder (Array<string | RegExp>, optional): Custom ordering rules. Strings match case-insensitively via inclusion; RegExp patterns test against path segments.

Returns

Array of sorted file paths — Promise<string[]> from sortedGlob, string[] from sortedGlobSync.

FAQ

How do I control the order Cypress runs spec files in? Pass sortedGlobSync(...) to specPattern in cypress.config.ts. Cypress runs specs in the order the array is given (with experimentalRunAllSpecs / cypress run), so the sorted array becomes your run order.

Does this work with Playwright / Vitest / Jest? Yes — anywhere a glob result array can be handed to the runner (Playwright testMatch, Vitest include, Jest testMatch). The library just returns sorted paths.

How is this different from glob, globby, or fast-glob? Those return matches in filesystem or alphabetical order. glob-sort adds numeric-prefix awareness and user-defined string/regex ordering rules applied at every folder level, with no dependencies.

Does it sort 10- after 9-? Yes. Numeric prefixes are parsed as numbers, so 9-foo comes before 10-foo (unlike plain alphabetical sorting).

License

MIT