--- id: deno version: "2.9.5" license: MIT license_treatment: permissive maintenance: active --- # deno — Python redistribution of Deno binaries License: permissive · Maintenance: active · Downloads: 131.6K/mo ## What it is and what it does This package wraps Deno—a modern JavaScript and TypeScript runtime built on V8, Rust, and Tokio—and redistributes its official binaries through PyPI. It lets you install Deno as a Python dependency and call it from Python code via the `deno.find_deno_bin()` helper, which returns the path to the Deno executable. The package handles platform detection and binary selection automatically, so you get the correct build for your OS and CPU architecture without manual setup. The main use case is integrating Deno into Python projects: you can run TypeScript or JavaScript files from Python, use Deno as a task runner for frontend builds or data processing, or include Deno in CI/CD pipelines alongside other Python tooling. Since Deno comes with built-in TypeScript support, a formatter, linter, test runner, and bundler, it's useful when you need those capabilities without managing a separate Node.js installation. Use it for: - Run TypeScript or JavaScript files from a Python application using subprocess and deno.find_deno_bin(). - Pin a specific Deno version in requirements.txt or pyproject.toml for reproducible builds across environments. - Execute Deno-based build tasks (asset compilation, API mocking) as part of a Python project's CI/CD pipeline. - Integrate Deno's built-in tooling (formatter, linter, test runner) into a polyglot project without separate Node.js setup. - Distribute a Python application that depends on Deno without requiring users to install Deno manually. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Packages and distributes Deno (a JavaScript/TypeScript runtime) as a Python package, making it installable via pip and accessible from Python code. Yes, if you need to run Deno from Python or include Deno as a managed dependency. The package is actively maintained, has no security vulnerabilities, uses a permissive MIT license, and handles cross-platform binary distribution automatically. Install friction is moderate due to platform-specific wheels, but that's unavoidable for a binary distribution. Requires Python 3.10+. ## Install pip install deno uv add deno poetry add deno ## Installing deno Before you install: Medium install friction due to platform-specific binary wheels (macOS x86_64/arm64, Linux x86_64/aarch64, Windows x86_64), but the package is actively maintained with recent releases and no runtime dependencies to resolve. License in practice: MIT license permits commercial and private use with minimal restrictions—include a copy of the license and you're free to use, modify, and distribute. Quickstart: pip install deno import deno import subprocess deno_bin = deno.find_deno_bin() result = subprocess.run([deno_bin, "--version"], capture_output=True, text=True) print(result.stdout) Requires Python 3.10 or later; the Deno binary itself is downloaded on first use and requires a supported platform (macOS, Linux, or Windows x86_64/arm64). Verify before relying: - Whether the package automatically downloads the Deno binary on install or on first use of find_deno_bin(). - Disk space requirements for the downloaded Deno binary. - Whether older Deno versions remain available for pinning, or only recent releases. ## Package facts - License: MIT (permissive) - Python support: supports_current - Install friction: medium - Maintenance: active - Downloads: 131.6K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags deno runtime python, javascript typescript in python, run deno from python, deno binary distribution, typescript execution python, deno package manager, cross-platform deno installer, javascript-runtime, typescript-support, binary-distribution [View on SkillFed](https://skillfed.io/packages/deno) · [View on PyPI](https://pypi.org/project/deno/)