A tool library for conveniently using Node.js in Python
Project description
py-node-manager
A tool library for conveniently using Node.js in Python.
English | 简体中文
Installation
pip install py-node-manager
Usage
Basic Usage
from py_node_manager import NodeManager
# Create NodeManager instance
# download_node=True means automatically download Node.js if not found in system
# node_version specifies the Node.js version to download
manager = NodeManager(download_node=True, node_version='18.17.0')
# Get paths to Node.js, npm, and npx
node_path = manager.node_path # Path to downloaded Node.js, None if using system Node.js
npm_path = manager.npm_path # Path to npm
npx_path = manager.npx_path # Path to npx
# Get environment variables (if using downloaded Node.js)
node_env = manager.node_env # Environment variables dictionary
Running Node.js Commands
import subprocess
from py_node_manager import NodeManager
manager = NodeManager(download_node=True, node_version='18.17.0')
# Run Node.js commands
result = subprocess.run(
[manager.npm_path, 'init', '-y'],
env=manager.node_env,
capture_output=True,
text=True
)
print(result.stdout)
Without Automatic Node.js Download
from py_node_manager import NodeManager
# Will raise an exception if Node.js is not found in the system
manager = NodeManager(download_node=False, node_version='18.17.0')
Testing
This project uses pytest for testing with 100% code coverage.
Running Tests
To run the tests in the conda environment:
# Install dependencies
pip install -e .
pip install -r requirements-dev.txt
# Run tests
pytest tests/ -v
# Run tests with coverage report
pytest tests/ --cov=py_node_manager --cov-report=term-missing
Test Structure
tests/test_node_manager.py- Complete test suite for NodeManager classtests/conftest.py- pytest configurationtests/__init__.py- Package initialization
All code paths are tested including:
- Normal execution paths
- Error handling scenarios
- Platform-specific behaviors
- CLI mode logging
- Cached Node.js usage
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
py_node_manager-0.1.2.tar.gz
(9.7 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file py_node_manager-0.1.2.tar.gz.
File metadata
- Download URL: py_node_manager-0.1.2.tar.gz
- Upload date:
- Size: 9.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b61823e262f0bcc0de9bb1c0454e1ec5a0db807e953515fff64b1d5d96310dc2
|
|
| MD5 |
74b60a4696c06ed5897467c98588a861
|
|
| BLAKE2b-256 |
316a824783948be8f05fbc3a0ad2fceaefb986fef2e30f1d650cd360a2aaceb7
|
File details
Details for the file py_node_manager-0.1.2-py3-none-any.whl.
File metadata
- Download URL: py_node_manager-0.1.2-py3-none-any.whl
- Upload date:
- Size: 6.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
696876aa0cd4859d580638e8432abe8355029744075891bb9be4315e2ae25512
|
|
| MD5 |
0edd4aae8c11573103acd968b88102b5
|
|
| BLAKE2b-256 |
3465f3322a61d80f8232a0ba40b76829aac295abd5684f1e999efa1aef3a4665
|