npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

renkin

v1.0.10

Published

Ultra-fast retrosynthesis engine for computer-aided synthesis planning (CASP) — pure Rust, WASM-ready, Python bindings via PyO3

Readme

RENKIN

Local retrosynthesis planning and route auditing in Rust.

CI Crates.io PyPI License: MIT

Docs · Playground · 日本語 · 中文

RENKIN has two complementary jobs:

  • Plan: search retrosynthetic routes from target SMILES to declared building blocks.
  • Audit: apply the same deterministic structural, stock, forward-replay, and provenance checks to routes from RENKIN, AiZynthFinder, Syntheseus, or SynPlanner.

Current release: v1.0.10. Core chemistry is pure Rust; the project ships a CLI, Rust crate, Python package, MCP server, and browser WebAssembly module. The default planner has 24 hand-crafted rules. Repository-backed runs use the 402-compound stock file; WASM and installations without that file use a compiled-in 152-compound fallback. Supply stock explicitly when it matters.

Install

pip install renkin
cargo add renkin
npm install renkin

Start in two commands

Plan aspirin from the CLI:

renkin --target "CC(=O)Oc1ccccc1C(=O)O" --depth 5 --beam-width 100

Audit an exported route locally:

renkin audit-route route.json --format auto --output json

Python uses the same engine:

import json, renkin
routes = json.loads(renkin.find_routes("CC(=O)Oc1ccccc1C(=O)O", depth=5))
report = json.loads(renkin.audit_route(open("route.json").read(), format="auto"))

Choose an interface

| Need | Start here | | --- | --- | | Browser-only exploration or audit | Playground · WASM API | | Application integration | Python · Rust | | Local agent workflow | MCP guide | | Private stock or route evidence | Audit guide · Policy guide |

renkin capabilities, renkin.capabilities(), WASM capabilities(), and modern MCP discovery expose each surface's effective limits. Private inputs stay local unless an operator explicitly exports them.

Scope and benchmark boundary

An audit result is evidence, not a claim that a synthesis will succeed in the laboratory. Stock identity is exact standardized canonical-SMILES membership; model output and route imports are never accepted without validation.

The registered Phase 55 shared-stock TEST found strict routes for RENKIN on 481/690 targets (69.71%) and AiZynthFinder 4.4.1 on 32/690 (4.64%), under its pinned cohort, stock, assets, and budgets. It does not establish universal planner superiority, laboratory viability, or whole-cohort speed superiority. Read the result record before reusing the figure.

Development

cargo test --workspace
cargo clippy --workspace --all-targets -- -D warnings
cargo fmt --all -- --check

For architecture and contribution rules, see AGENTS.md, CONTRIBUTING.md, and the current ROADMAP.md. Full release history remains in CHANGELOG.md.

License

MIT. See LICENSE.