skillfed

nodejs-wheel-binaries

unoffical Node.js package

nodejs-wheel-binaries v24.16.0 15.0M downloads/30d#1,207 on PyPI28
Permissive license Active released

What it is and what it does

nodejs-wheel-binaries is a PyPI package that bundles Node.js prebuilt binaries as platform-specific wheels, allowing you to install Node.js, npm, npx, and corepack directly via pip without system package managers. It supports modern Python versions (3.7+) across Linux (x86_64 and aarch64 with glibc 2.28+ or musl 1.2+), macOS 13.0+ (both x86_64 and arm64), and Windows (amd64 and arm64).

You can use it two ways: as a command-line tool (node, npm, npx, corepack commands available directly) or as a Python library by importing functions like node(), npm(), npx(), and corepack() to run Node.js tools programmatically from Python scripts. The library returns either exit codes or subprocess.CompletedProcess objects depending on your preference, making it suitable for automation, CI/CD pipelines, or hybrid Python-Node.js workflows.

Use it for:

  • Distribute Python applications that need Node.js tooling without requiring users to install Node.js separately.
  • Run npm or npx commands from Python automation scripts or CI/CD pipelines without system-level Node.js installation.
  • Build tools that combine Python and Node.js ecosystems, such as bundlers or development environments.
  • Test Node.js code from Python test suites using the Python API to invoke node directly.
  • Deploy containerized applications where Node.js should be managed as a Python dependency rather than a system package.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Distributes Node.js prebuilt binaries as Python wheels, making Node.js, npm, npx, and corepack available via pip for use in Python scripts and command-line environments.

Yes, with conditions. Install if you need Node.js available in a Python environment and want to avoid system package manager dependencies. Medium install friction due to platform-specific wheels means verify your platform is supported before relying on it. Active maintenance, no known vulnerabilities, and permissive MIT license make it safe to use. Not suitable if your platform (e.g., unsupported Linux libc variant or older macOS) is not in the advertised build matrix.

Install

nodejs-wheel-binaries on PyPI

pip

pip install nodejs-wheel-binaries

uv

uv add nodejs-wheel-binaries

poetry

poetry add nodejs-wheel-binaries

Installing nodejs-wheel-binaries

Before you install

Medium install friction due to platform-specific wheel binaries (macOS arm64/x86_64, Linux x86_64/aarch64 with glibc/musl variants, Windows amd64/arm64). Active maintenance with recent releases; last commit 2026-08-12 and 76 days since latest release indicates ongoing support.

License in practice

Distributed under MIT license, same as Node.js itself. Permissive treatment means you can use this package freely in commercial and open-source projects with minimal restrictions.

Quickstart

pip install nodejs-wheel-binaries

from nodejs_wheel import node, npm, npx

return_code = node(["--version"])
result = npm(["--version"], return_completed_process=True)

Requires Python 3.7 or above. Platform-specific wheels available for Linux (glibc 2.28+, musl 1.2+), macOS 13.0+, and Windows; installation may fail on unsupported platforms.

Verify before relying

  • Whether the package works reliably across all advertised platform/architecture combinations in production environments.
  • Performance overhead or latency when calling Node.js through the Python API versus direct command-line invocation.
  • Whether binary updates track Node.js releases promptly or lag behind upstream.

Package facts

License not declared (permissive)
Python support supports the current Python release (>=3.7)
Install friction medium — platform-specific wheel
Runtime dependencies 1 — typing-extensions
Maintenance actively maintained — 76 days since the last release
Last repo commit
First released
Downloads 14,963,716/month — #1,207 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: nodejs_wheel_binaries-24.16.0-py2.py3-none-macosx_13_0_arm64.whl; nodejs_wheel_binaries-24.16.0-py2.py3-none-macosx_13_0_x86_64.whl; nodejs_wheel_binaries-24.16.0-py2.py3-none-manylinux_2_28_aarch64.whl; nodejs_wheel_binaries-24.16.0-py2.py3-none-manylinux_2_28_x86_64.whl; nodejs_wheel_binaries-24.16.0-py2.py3-none-musllinux_1_2_aarch64.whl; nodejs_wheel_binaries-24.16.0-py2.py3-none-musllinux_1_2_x86_64.whl; nodejs_wheel_binaries-24.16.0-py2.py3-none-win_amd64.whl; nodejs_wheel_binaries-24.16.0-py2.py3-none-win_arm64.whl

Keywords: nodejs

Development Status :: 5 - Production/StableEnvironment :: ConsoleLicense :: OSI Approved :: MIT LicenseProgramming Language :: Python :: 3

Tags

node.js python packagenpm via pipnode binaries wheelpython node.js integrationnodejs command line pythonnode runtime pythoncorepack python
nodejs-integrationbinary-distributioncross-platform

More Utilities packages