nodejs-wheel-binaries


Namenodejs-wheel-binaries JSON
Version 22.19.0 PyPI version JSON
download
home_pageNone
Summaryunoffical Node.js package
upload_time2025-09-12 10:33:46
maintainerNone
docs_urlNone
authorNone
requires_python>=3.7
licenseNone
keywords nodejs
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Unofficial Node.js wheels

[![Pypi version](https://img.shields.io/pypi/v/nodejs-wheel?label=nodejs-wheel&logo=pypi)](https://pypi.org/project/nodejs-wheel/)
[![Pypi downloads](https://img.shields.io/pypi/dm/nodejs-wheel)](https://pypi.org/project/nodejs-wheel/)
[![Pypi downloads](https://img.shields.io/pypi/dw/nodejs-wheel)](https://pypi.org/project/nodejs-wheel/)
[![Pypi downloads](https://img.shields.io/pypi/dd/nodejs-wheel)](https://pypi.org/project/nodejs-wheel/)

`nodejs-wheel` is an unofficial repository to distribute Node.js prebuilt wheels through PyPI using

```sh
pip install nodejs-wheel
```

*New in v20.13.0*: If you don't need command line interface (CLI), install only `nodejs-wheel-binaries`, which is a direct dependency of `nodejs-wheel`.

[![Pypi version](https://img.shields.io/pypi/v/nodejs-wheel-binaries?label=nodejs-wheel-binaries&logo=pypi)](https://pypi.org/project/nodejs-wheel-binaries/)
[![Pypi downloads](https://img.shields.io/pypi/dm/nodejs-wheel-binaries)](https://pypi.org/project/nodejs-wheel-binaries/)
[![Pypi downloads](https://img.shields.io/pypi/dw/nodejs-wheel-binaries)](https://pypi.org/project/nodejs-wheel-binaries/)
[![Pypi downloads](https://img.shields.io/pypi/dd/nodejs-wheel-binaries)](https://pypi.org/project/nodejs-wheel-binaries/)

```sh
pip install nodejs-wheel-binaries
```

The package requires Python 3.7 and above.

The project is powered by [scikit-build-core](https://github.com/scikit-build/scikit-build-core) and [cibuildwheel](https://github.com/pypa/cibuildwheel).

## Available Builds

| OS      | Arch    | Bit | Conditions     | New in      |
| ------- | ------- | --- | -------------- | ----------- |
| Linux   | x86_64  | 64  | glibc >= 2.17  | v18.18.0    |
| Linux   | x86_64  | 64  | musl >= 1.2    | v20.14.0    |
| Linux   | aarch64 | 64  | glibc >= 2.17  | v20.13.0    |
| Linux   | aarch64 | 64  | musl >= 1.2    | v22.13.1    |
| macOS   | x86_64  | 64  | >= macOS-11    | v18.18.0    |
| macOS   | arm64   | 64  | >= macOS-11    | v20.11.1    |
| Windows | amd64   | 64  |                | v18.18.0    |
| Windows | arm64   | 64  |                | v22.12.0    |

## Usage

### Command line

Only available in the `nodejs-wheel` package.

```sh
node -h
npm -h
npx -h
# New in v22.13.1
corepack -h
```

### Run library module as a script

*New in v20.13.0*.

Only support `node`.

```sh
python -m nodejs_wheel --version
```

### Python API

*New in v20.13.0*.

```py
from nodejs_wheel import (
    node,
    npm,
    npx,
    # corepack: New in v22.13.1
    corepack,
)

return_code0 = node(["--version"])
return_code1 = npm(["--version"])
return_code2 = npx(["--version"])
# corepack: New in v22.13.1
return_code3 = corepack(["--version"])
```

*New in v20.13.1*: pass `return_completed_process=True` to get `subprocess.CompletedProcess` instead of `int`.

```py
completed_process0 = node(["--version"], return_completed_process=True)
completed_process1 = npm(["--version"], return_completed_process=True)
completed_process2 = npx(["--version"], return_completed_process=True)
# corepack: New in v22.13.1
completed_process3 = corepack(["--version"], return_completed_process=True)
```

## License

`nodejs-wheel` distributed under the same MIT [license](LICENSE) as [Node.js](https://github.com/nodejs/node).

## Other projects

The project is inspired by many other similiar projects:

- [samwillis/nodejs-pypi](https://github.com/samwillis/nodejs-pypi): The package redistribute the official Node.js binaries to PyPI. However, the official binary for Nodejs 18 requires GLIBC 2.28, making it unsupported in [manylinux2014](https://github.com/pypa/manylinux) images. Besides, the wheel tag is wrong.
- [sbwml/node-latest-centos](https://github.com/sbwml/node-latest-centos): Use GitHub Actions to build Node.js in CentOS 7, but is not related to Python or PyPI.
- [scikit-build/cmake-python-distributions](https://github.com/scikit-build/cmake-python-distributions): Use cibuildwheel and scikit-build to build CMake and distribute CMake in PyPI.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "nodejs-wheel-binaries",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "nodejs",
    "author": null,
    "author_email": "Jinzhe Zeng <jinzhe.zeng@ustc.edu.cn>",
    "download_url": "https://files.pythonhosted.org/packages/bd/ca/6033f80b7aebc23cb31ed8b09608b6308c5273c3522aedd043e8a0644d83/nodejs_wheel_binaries-22.19.0.tar.gz",
    "platform": null,
    "description": "# Unofficial Node.js wheels\n\n[![Pypi version](https://img.shields.io/pypi/v/nodejs-wheel?label=nodejs-wheel&logo=pypi)](https://pypi.org/project/nodejs-wheel/)\n[![Pypi downloads](https://img.shields.io/pypi/dm/nodejs-wheel)](https://pypi.org/project/nodejs-wheel/)\n[![Pypi downloads](https://img.shields.io/pypi/dw/nodejs-wheel)](https://pypi.org/project/nodejs-wheel/)\n[![Pypi downloads](https://img.shields.io/pypi/dd/nodejs-wheel)](https://pypi.org/project/nodejs-wheel/)\n\n`nodejs-wheel` is an unofficial repository to distribute Node.js prebuilt wheels through PyPI using\n\n```sh\npip install nodejs-wheel\n```\n\n*New in v20.13.0*: If you don't need command line interface (CLI), install only `nodejs-wheel-binaries`, which is a direct dependency of `nodejs-wheel`.\n\n[![Pypi version](https://img.shields.io/pypi/v/nodejs-wheel-binaries?label=nodejs-wheel-binaries&logo=pypi)](https://pypi.org/project/nodejs-wheel-binaries/)\n[![Pypi downloads](https://img.shields.io/pypi/dm/nodejs-wheel-binaries)](https://pypi.org/project/nodejs-wheel-binaries/)\n[![Pypi downloads](https://img.shields.io/pypi/dw/nodejs-wheel-binaries)](https://pypi.org/project/nodejs-wheel-binaries/)\n[![Pypi downloads](https://img.shields.io/pypi/dd/nodejs-wheel-binaries)](https://pypi.org/project/nodejs-wheel-binaries/)\n\n```sh\npip install nodejs-wheel-binaries\n```\n\nThe package requires Python 3.7 and above.\n\nThe project is powered by [scikit-build-core](https://github.com/scikit-build/scikit-build-core) and [cibuildwheel](https://github.com/pypa/cibuildwheel).\n\n## Available Builds\n\n| OS      | Arch    | Bit | Conditions     | New in      |\n| ------- | ------- | --- | -------------- | ----------- |\n| Linux   | x86_64  | 64  | glibc >= 2.17  | v18.18.0    |\n| Linux   | x86_64  | 64  | musl >= 1.2    | v20.14.0    |\n| Linux   | aarch64 | 64  | glibc >= 2.17  | v20.13.0    |\n| Linux   | aarch64 | 64  | musl >= 1.2    | v22.13.1    |\n| macOS   | x86_64  | 64  | >= macOS-11    | v18.18.0    |\n| macOS   | arm64   | 64  | >= macOS-11    | v20.11.1    |\n| Windows | amd64   | 64  |                | v18.18.0    |\n| Windows | arm64   | 64  |                | v22.12.0    |\n\n## Usage\n\n### Command line\n\nOnly available in the `nodejs-wheel` package.\n\n```sh\nnode -h\nnpm -h\nnpx -h\n# New in v22.13.1\ncorepack -h\n```\n\n### Run library module as a script\n\n*New in v20.13.0*.\n\nOnly support `node`.\n\n```sh\npython -m nodejs_wheel --version\n```\n\n### Python API\n\n*New in v20.13.0*.\n\n```py\nfrom nodejs_wheel import (\n    node,\n    npm,\n    npx,\n    # corepack: New in v22.13.1\n    corepack,\n)\n\nreturn_code0 = node([\"--version\"])\nreturn_code1 = npm([\"--version\"])\nreturn_code2 = npx([\"--version\"])\n# corepack: New in v22.13.1\nreturn_code3 = corepack([\"--version\"])\n```\n\n*New in v20.13.1*: pass `return_completed_process=True` to get `subprocess.CompletedProcess` instead of `int`.\n\n```py\ncompleted_process0 = node([\"--version\"], return_completed_process=True)\ncompleted_process1 = npm([\"--version\"], return_completed_process=True)\ncompleted_process2 = npx([\"--version\"], return_completed_process=True)\n# corepack: New in v22.13.1\ncompleted_process3 = corepack([\"--version\"], return_completed_process=True)\n```\n\n## License\n\n`nodejs-wheel` distributed under the same MIT [license](LICENSE) as [Node.js](https://github.com/nodejs/node).\n\n## Other projects\n\nThe project is inspired by many other similiar projects:\n\n- [samwillis/nodejs-pypi](https://github.com/samwillis/nodejs-pypi): The package redistribute the official Node.js binaries to PyPI. However, the official binary for Nodejs 18 requires GLIBC 2.28, making it unsupported in [manylinux2014](https://github.com/pypa/manylinux) images. Besides, the wheel tag is wrong.\n- [sbwml/node-latest-centos](https://github.com/sbwml/node-latest-centos): Use GitHub Actions to build Node.js in CentOS 7, but is not related to Python or PyPI.\n- [scikit-build/cmake-python-distributions](https://github.com/scikit-build/cmake-python-distributions): Use cibuildwheel and scikit-build to build CMake and distribute CMake in PyPI.\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "unoffical Node.js package",
    "version": "22.19.0",
    "project_urls": {
        "repository": "https://github.com/njzjz/nodejs-wheel"
    },
    "split_keywords": [
        "nodejs"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "93a20d055fd1d8c9a7a971c4db10cf42f3bba57c964beb6cf383ca053f2cdd20",
                "md5": "08e69492087fa62864210299f479f447",
                "sha256": "43eca1526455a1fb4cb777095198f7ebe5111a4444749c87f5c2b84645aaa72a"
            },
            "downloads": -1,
            "filename": "nodejs_wheel_binaries-22.19.0-py2.py3-none-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "08e69492087fa62864210299f479f447",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">=3.7",
            "size": 50902454,
            "upload_time": "2025-09-12T10:33:18",
            "upload_time_iso_8601": "2025-09-12T10:33:18.300882Z",
            "url": "https://files.pythonhosted.org/packages/93/a2/0d055fd1d8c9a7a971c4db10cf42f3bba57c964beb6cf383ca053f2cdd20/nodejs_wheel_binaries-22.19.0-py2.py3-none-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b5f5446f7b3c5be1d2f5145ffa3c9aac3496e06cdf0f436adeb21a1f95dd79a7",
                "md5": "ba5c5a3d9988b6975093196ad37853ab",
                "sha256": "feb06709e1320790d34babdf71d841ec7f28e4c73217d733e7f5023060a86bfc"
            },
            "downloads": -1,
            "filename": "nodejs_wheel_binaries-22.19.0-py2.py3-none-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ba5c5a3d9988b6975093196ad37853ab",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">=3.7",
            "size": 51837860,
            "upload_time": "2025-09-12T10:33:21",
            "upload_time_iso_8601": "2025-09-12T10:33:21.599438Z",
            "url": "https://files.pythonhosted.org/packages/b5/f5/446f7b3c5be1d2f5145ffa3c9aac3496e06cdf0f436adeb21a1f95dd79a7/nodejs_wheel_binaries-22.19.0-py2.py3-none-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1e4ed0a036f04fd0f5dc3ae505430657044b8d9853c33be6b2d122bb171aaca3",
                "md5": "df3892c016130ca940099cc67532d203",
                "sha256": "db9f5777292491430457c99228d3a267decf12a09d31246f0692391e3513285e"
            },
            "downloads": -1,
            "filename": "nodejs_wheel_binaries-22.19.0-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "df3892c016130ca940099cc67532d203",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">=3.7",
            "size": 57841528,
            "upload_time": "2025-09-12T10:33:25",
            "upload_time_iso_8601": "2025-09-12T10:33:25.433849Z",
            "url": "https://files.pythonhosted.org/packages/1e/4e/d0a036f04fd0f5dc3ae505430657044b8d9853c33be6b2d122bb171aaca3/nodejs_wheel_binaries-22.19.0-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e2114811d27819f229cc129925c170db20c12d4f01ad366a0066f06d6eb833cf",
                "md5": "9ba99172d4a95f8ac4a8213d23b86737",
                "sha256": "1392896f1a05a88a8a89b26e182d90fdf3020b4598a047807b91b65731e24c00"
            },
            "downloads": -1,
            "filename": "nodejs_wheel_binaries-22.19.0-py2.py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9ba99172d4a95f8ac4a8213d23b86737",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">=3.7",
            "size": 58368815,
            "upload_time": "2025-09-12T10:33:29",
            "upload_time_iso_8601": "2025-09-12T10:33:29.083611Z",
            "url": "https://files.pythonhosted.org/packages/e2/11/4811d27819f229cc129925c170db20c12d4f01ad366a0066f06d6eb833cf/nodejs_wheel_binaries-22.19.0-py2.py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6e94df41416856b980e38a7ff280cfb59f142a77955ccdbec7cc4260d8ab2e78",
                "md5": "4de5444f3ca5c0468e4303b8954de331",
                "sha256": "9164c876644f949cad665e3ada00f75023e18f381e78a1d7b60ccbbfb4086e73"
            },
            "downloads": -1,
            "filename": "nodejs_wheel_binaries-22.19.0-py2.py3-none-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4de5444f3ca5c0468e4303b8954de331",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">=3.7",
            "size": 59690937,
            "upload_time": "2025-09-12T10:33:32",
            "upload_time_iso_8601": "2025-09-12T10:33:32.771983Z",
            "url": "https://files.pythonhosted.org/packages/6e/94/df41416856b980e38a7ff280cfb59f142a77955ccdbec7cc4260d8ab2e78/nodejs_wheel_binaries-22.19.0-py2.py3-none-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d1398d0d5f84b7616bdc4eca725f5d64a1cfcac3d90cf3f30cae17d12f8e987f",
                "md5": "cb31bebc9c7d5585620af2b5e7abab22",
                "sha256": "6b4b75166134010bc9cfebd30dc57047796a27049fef3fc22316216d76bc0af7"
            },
            "downloads": -1,
            "filename": "nodejs_wheel_binaries-22.19.0-py2.py3-none-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cb31bebc9c7d5585620af2b5e7abab22",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">=3.7",
            "size": 60751996,
            "upload_time": "2025-09-12T10:33:36",
            "upload_time_iso_8601": "2025-09-12T10:33:36.962015Z",
            "url": "https://files.pythonhosted.org/packages/d1/39/8d0d5f84b7616bdc4eca725f5d64a1cfcac3d90cf3f30cae17d12f8e987f/nodejs_wheel_binaries-22.19.0-py2.py3-none-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "41932d66b5b60055dd1de6e37e35bef563c15e4cafa5cfe3a6990e0ab358e515",
                "md5": "581969f42c6f577d24332f3a789d5322",
                "sha256": "3f271f5abfc71b052a6b074225eca8c1223a0f7216863439b86feaca814f6e5a"
            },
            "downloads": -1,
            "filename": "nodejs_wheel_binaries-22.19.0-py2.py3-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "581969f42c6f577d24332f3a789d5322",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">=3.7",
            "size": 40026140,
            "upload_time": "2025-09-12T10:33:40",
            "upload_time_iso_8601": "2025-09-12T10:33:40.330432Z",
            "url": "https://files.pythonhosted.org/packages/41/93/2d66b5b60055dd1de6e37e35bef563c15e4cafa5cfe3a6990e0ab358e515/nodejs_wheel_binaries-22.19.0-py2.py3-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a346c9cf7ff7e3c71f07ca8331c939afd09b6e59fc85a2944ea9411e8b29ce50",
                "md5": "807748590391a58493c0877dc05ed1a1",
                "sha256": "666a355fe0c9bde44a9221cd543599b029045643c8196b8eedb44f28dc192e06"
            },
            "downloads": -1,
            "filename": "nodejs_wheel_binaries-22.19.0-py2.py3-none-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "807748590391a58493c0877dc05ed1a1",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">=3.7",
            "size": 38804500,
            "upload_time": "2025-09-12T10:33:43",
            "upload_time_iso_8601": "2025-09-12T10:33:43.302132Z",
            "url": "https://files.pythonhosted.org/packages/a3/46/c9cf7ff7e3c71f07ca8331c939afd09b6e59fc85a2944ea9411e8b29ce50/nodejs_wheel_binaries-22.19.0-py2.py3-none-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bdca6033f80b7aebc23cb31ed8b09608b6308c5273c3522aedd043e8a0644d83",
                "md5": "2a689ff615454c1edf05d163a1aa4ba9",
                "sha256": "e69b97ef443d36a72602f7ed356c6a36323873230f894799f4270a853932fdb3"
            },
            "downloads": -1,
            "filename": "nodejs_wheel_binaries-22.19.0.tar.gz",
            "has_sig": false,
            "md5_digest": "2a689ff615454c1edf05d163a1aa4ba9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 8060,
            "upload_time": "2025-09-12T10:33:46",
            "upload_time_iso_8601": "2025-09-12T10:33:46.935461Z",
            "url": "https://files.pythonhosted.org/packages/bd/ca/6033f80b7aebc23cb31ed8b09608b6308c5273c3522aedd043e8a0644d83/nodejs_wheel_binaries-22.19.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-09-12 10:33:46",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "njzjz",
    "github_project": "nodejs-wheel",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "nodejs-wheel-binaries"
}
        
Elapsed time: 4.45678s