open

Cross-platform Node.js library that opens URLs, files, and executables in the user's default or a specified app.

Library
npm
v11.0.1
3,497stars
MIT License

Repository Health

Pre-computed score based on development activity, maintenance, community, maturity, and trend momentum.How we score it →
66/100Good
Development Activity60
Maintenance44
Community60
Maturity60
Momentum40

Technical Analysis

AI-assessed by reading the actual repository — architecture, code quality, innovation, and documentation.How we score it →
80/100Excellent
Architecture78
Code Quality82
Innovation70
Learning Curve88

open is a small, focused Node.js library for launching URLs, files, and executables from a script or CLI tool. It abstracts over the platform-specific open (macOS), start (Windows), and xdg-open (Linux) commands behind a single async API, so code that needs to pop open a browser tab, an image viewer, or an arbitrary app doesn’t have to branch on process.platform itself.

Beyond the basic case, it supports waiting for the opened app to exit, passing app-specific arguments, opening a target with a specific named app (with automatic per-platform binary name detection via the bundled apps map), and opening the user’s actual default or private/incognito browser through the companion default-browser package. It uses spawn rather than exec internally, which avoids shell-injection risk when the target contains special characters.

What You Get

  • A default open(target, options) export that resolves once the target app has launched, with an optional wait: true mode that resolves only after the app exits
  • An openApp(name, options) export for launching a named application directly, independent of any file or URL target
  • An apps object with lazily-detected, platform-correct binary names for Chrome, Firefox, Edge, Brave, and Safari, plus browser/browserPrivate shortcuts that resolve to the user’s actual default browser via default-browser
  • Built-in WSL support that shells out to PowerShell (with an xdg-open fallback in sandboxed environments) and converts WSL paths to Windows paths automatically
  • A bundled, up-to-date xdg-open script so Linux behavior doesn’t depend on the system having one installed

Common Use Cases

  • A CLI tool that finishes a task (e.g. deploying a site or generating a report) and opens the result in the user’s browser
  • A build or dev-server tool that opens http://localhost:PORT automatically when the server starts
  • A desktop-adjacent Node.js script that needs to reveal a generated file (PDF, image, log) in its associated viewer app
  • An authentication flow that opens a login URL in the system browser and waits for the user to complete it

Under The Hood

Architecture — The entire package is one ~420-line ESM module (index.js) built around a single internal baseOpen(options) function that all public exports funnel through. open(target, options) and openApp(name, options) are thin wrappers that normalize their arguments into a shared options object and delegate to baseOpen, which branches on process.platform (and a WSL detection flag from the wsl-utils dependency) to build the right command and cliArguments for open (macOS), PowerShell’s Start (Windows or WSL-with-PowerShell-access), or xdg-open (other platforms, using a bundled xdg-open binary co-located in the package when the system lacks one). Array-valued app options are handled recursively via a tryEachApp helper that retries each candidate app in turn and aggregates failures into an AggregateError. The final step in every branch is a single childProcess.spawn(command, cliArguments, childProcessOptions) call whose promise resolution differs by mode (wait, fallback-attempt, or fire-and-forget) via three distinct Promise constructions at the bottom of baseOpen.

Tech Stack — Plain modern JavaScript (97.6%) with a slim TypeScript layer (2.4%, index.d.ts + index.test-d.ts for type-testing via tsd); native ESM only ("type": "module"), Node.js >=20 required per engines. Runtime dependencies are all small, single-purpose Sindre Sorhus packages: default-browser and wsl-utils/powershell-utils for OS integration, define-lazy-prop for the lazily-computed apps binary map, and is-in-ssh/is-inside-container for environment detection. Dev tooling is xo (opinionated ESLint config) for linting and ava for the test runner, invoked via a single test script (xo && tsd).

Code Qualitytest.js (211 lines) exercises the public API end-to-end with ava, but the file’s own header comment is candid about its limits: tests only assert that open() does not throw, since there’s ‘no way to make sure that it actually opened anything’ — verifying real app-launch behavior is left to manual testing. Naming is consistent and descriptive throughout (baseOpen, tryEachApp, fallbackAttemptSymbol), platform-specific branches are commented with rationale (e.g. why the target must come after --args on macOS, referencing GitHub issue #332), and error paths use AggregateError to preserve all per-app failures rather than only the last one.

API Design — The public surface is deliberately small: a default open() export, plus openApp() and apps named exports, all documented in a single, example-driven README. Options objects use simple boolean/string fields with sensible defaults (wait: false, background: false) rather than requiring configuration objects or setup calls, so the minimal usage (await open('https://example.com')) requires zero boilerplate. TypeScript types are shipped natively (index.d.ts) with per-option JSDoc-style comments, and the apps map removes the most common source of platform-specific friction (guessing OS-dependent binary names) from calling code.

Used by 46 apps in this directory

TypeScript
69%
Other

Budibase

Low Code Platforms · No Code Platforms

28,220

Build AI agents, automations, and internal apps on a single open-source platform with full self-hosting control.

View details
92
Repo Health
81
Technical
63
Dependency
Built with
TypeScript69%
Svelte26%
Updated today
TypeScript
99%
Other

byterover-cli

AI Agents · AI Code Assistants

4,941

A portable memory layer for AI coding agents — curate structured project knowledge into a version-controlled context tree that syncs across tools, machines, and teammates.

View details
77
Repo Health
83
Technical
71
Dependency
Built with
TypeScript99%
Updated 1 months ago
TypeScript
99%
AGPL 3.0

Cherry Studio

AI Assistants

50,753

All-in-one AI desktop client with 300+ assistants and multi-model support

View details
88
Repo Health
84
Technical
71
Dependency
Built with
TypeScript99%
Updated today
TypeScript
97%
Apache 2.0

Cline

AI Code Assistants

66,453

An open-source AI coding agent that lives in your editor and terminal — reads and edits your codebase, runs commands, browses the web, and requires human approval for every action by default.

View details
90
Repo Health
74
Technical
67
Dependency
Built with
TypeScript97%
Updated today
TypeScript
98%
Apache 2.0

Codebuff

AI Code Assistants

9,981

An open-source AI coding assistant that coordinates specialized agents to edit your codebase from natural language — including Freebuff, a free, ad-supported version powered entirely by open-source models like DeepSeek and Kimi.

View details
84
Repo Health
71
Technical
68
Dependency
Built with
TypeScript98%
Updated today
TypeScript
84%
Apache 2.0

Continue

Developer Tools · AI Development · AI Code Assistants

35,532

Open-source coding agent for VS Code, JetBrains, and CLI with support for 30+ LLM providers.

View details
87
Repo Health
88
Technical
65
Dependency
Built with
TypeScript84%
Updated today
TypeScript
45%
Other

Convex Backend

Developer Tools · Databases

12,394

Open-source reactive database that lets developers build live-updating apps with pure TypeScript, strong consistency, and real-time subscriptions—no separate API layer required.

View details
88
Repo Health
82
Technical
70
Dependency
Built with
TypeScript45%
Rust43%
Updated today
TypeScript
50%
Other

Dify

No Code Platforms · AI Development · Developer Tools

152,883

Visual LLM workflow platform with RAG pipelines, agent capabilities, and model management for building production AI applications.

View details
92
Repo Health
85
Technical
71
Dependency
Built with
TypeScript50%
Python47%
Updated today
TypeScript
100%
Other

Dub

Marketing · Analytics

24,521

The open-source link attribution platform for short links, conversion tracking, and affiliate programs — powering 100M+ clicks monthly.

View details
81
Repo Health
78
Technical
65
Dependency
Built with
TypeScript100%
Updated today

Join founders buildingwith open source

Opinionated takes, migration guides, cost-saving tips, and insights from the open source ecosystem.

Subscribe on Substack
Join 750+ subscribers

Search