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

@kent-tokyo/chematic

v0.2.11

Published

WebAssembly bindings for chematic — use chematic from JavaScript/TypeScript

Downloads

2,773

Readme

chematic-wasm

WebAssembly bindings for chematic, a pure-Rust cheminformatics library.

Published to npm as @kent-tokyo/chematic.

Installation

npm install @kent-tokyo/chematic

Features

  • Parse SMILES strings into molecule handles
  • Molecular descriptors: MW, TPSA, LogP, Fsp3, QED, exact mass, rotatable bonds, HBD/HBA, aromatic ring count, Labute ASA
  • Drug-likeness filters: Lipinski, Veber, Egan, REOS, Ghose
  • EState indices (Hall & Kier 1991): per-atom values, sum/max/min
  • Gasteiger-Marsili PEOE partial charges: per-heavy-atom charges
  • VSA descriptors: SlogP_VSA (×12), SMR_VSA (×10), PEOE_VSA (×14)
  • SA score: synthetic accessibility estimate [1, 10]
  • Functional group identification (Ertl 2017 IFG)
  • Canonical SMILES generation
  • ECFP4/6, AtomPair, Torsion, and path fingerprints with Tanimoto similarity
  • BRICS fragment count
  • SDF/MOL block parsing
  • Topological descriptors: Wiener index, Hall-Kier κ, χ connectivity indices, Bertz CT
  • Shape descriptors (with 3D coordinates): PMI, NPR, radius of gyration, asphericity
  • 2D SVG depiction with CPK colors and atom/bond highlighting
  • SVG grid layout for multiple molecules
  • Reaction SMILES/SMIRKS parsing and transform
  • Add/remove explicit hydrogens

Usage

import init, {
  parse_smiles,
  tanimoto_ecfp4,
  tanimoto_atom_pair,
  tanimoto_torsion,
  brics_fragment_count,
  gasteiger_charges_json,
  slogp_vsa_json,
  smr_vsa_json,
  peoe_vsa_json,
  identify_functional_groups,
} from '@kent-tokyo/chematic';

await init();

const mol = parse_smiles('CC(=O)Oc1ccccc1C(=O)O'); // aspirin

// Descriptors
console.log(mol.atom_count());          // 13
console.log(mol.molecular_weight());    // ~180.16
console.log(mol.formula());             // "C9H8O4"
console.log(mol.tpsa());               // ~63.6
console.log(mol.logp_crippen());        // ~1.2
console.log(mol.fsp3());               // ~0.111
console.log(mol.qed());                // drug-likeness score [0, 1]
console.log(mol.exact_mass());         // ~180.042
console.log(mol.hbd_count());          // 1
console.log(mol.hba_count());          // 4
console.log(mol.rotatable_bond_count()); // 3
console.log(mol.aromatic_ring_count()); // 1
console.log(mol.lipinski_passes());     // true
console.log(mol.canonical_smiles());    // canonical SMILES string

// BRICS fragmentation
console.log(brics_fragment_count(mol)); // ≥ 2

// Fingerprint similarity
const caffeine = parse_smiles('Cn1cnc2c1c(=O)n(c(=O)n2C)C');
console.log(tanimoto_ecfp4(mol, caffeine));    // ECFP4 Tanimoto
console.log(tanimoto_atom_pair(mol, caffeine)); // AtomPair Tanimoto
console.log(tanimoto_torsion(mol, caffeine));   // Torsion Tanimoto
// Sprint Q: New descriptors (v0.1.15)
console.log(mol.sa_score());                     // synthetic accessibility [1,10]
console.log(mol.labute_asa());                   // Labute approx. surface area (Ų)

// Gasteiger partial charges (per heavy atom)
const charges = JSON.parse(gasteiger_charges_json(mol));
console.log(charges); // [-0.08, 0.12, -0.43, ...]

// VSA descriptor bins
const slogpVsa = JSON.parse(slogp_vsa_json(mol));
const smrVsa   = JSON.parse(smr_vsa_json(mol));
const peoeVsa  = JSON.parse(peoe_vsa_json(mol));

// Functional group identification
const ifg = JSON.parse(identify_functional_groups(mol));
console.log(ifg); // [{"atoms":[1,2,3],"types":"OC=O"}, ...]

Version History

v0.1.94 (2026-06-12):

  • SA Score corpus expanded: 188 FDA molecules (1415 unique fragments)
  • Enhanced fingerprints: True MHFP, True ERG, path FP with bond types
  • Full multi-sphere CIP stereochemistry for R/S assignment
  • InChI stereo layer round-trip support (tetrahedral and E/Z)

v0.1.93 (2026-06-12):

  • Full multi-sphere CIP priority rules
  • Correct stereochemistry assignment for complex chiral centers

v0.1.92 (2026-06-12):

  • InChI stereo layer parsing (tetrahedral /t and E/Z /b)
  • Path fingerprint with bond type interleaving

v0.1.91 (2026-06-12):

  • True MHFP (structural fragment hashing)
  • True ERG (Ertl 2017 functional group detection)

Building from source

wasm-pack build --target bundler --release