--- id: nodejs-wheel-binaries version: "24.16.0" license: unclear license_treatment: permissive maintenance: active --- # nodejs-wheel-binaries — unoffical Node.js package License: permissive · Maintenance: active · Downloads: 15.0M/mo ## 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 above — 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 pip install nodejs-wheel-binaries uv add nodejs-wheel-binaries 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_current - Install friction: medium - Maintenance: active - Downloads: 15.0M/month (top 5,000 on PyPI) - Known vulnerabilities: none known ## Tags node.js python package, npm via pip, node binaries wheel, python node.js integration, nodejs command line python, node runtime python, corepack python, nodejs-integration, binary-distribution, cross-platform [View on SkillFed](https://skillfed.io/packages/nodejs-wheel-binaries) · [View on PyPI](https://pypi.org/project/nodejs-wheel-binaries/)