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

bio-tooltips

v1.1.1

Published

Framework-agnostic biological & biochemical tooltips.

Downloads

709

Readme

Bio Tooltips

Framework-agnostic biological & biochemical tooltips for HTML documents.

Bio Tooltips provides shared tooltip behavior plus entity-specific tooltip modules for genes, chemicals, and future biology-related entities such as variants.

Currently supported modules:

  • Gene tooltips via MyGene.info
  • Chemical tooltips via MyChem.info

Install

npm install bio-tooltips

Import the shared stylesheet once:

import 'bio-tooltips/style.css';

Gene Tooltips

Use the MyGene.info adapter for gene symbols, species-aware lookup, summaries, pathways, transcripts, structures, and gene model visuals.

<span class="gene-tooltip" data-species="human">TP53</span>
<span class="gene-tooltip" data-species="mouse">Trp53</span>
import { GeneTooltip } from 'bio-tooltips/mygene';

GeneTooltip.init({
  selector: '.gene-tooltip'
});

Chemical Tooltips

Use the MyChem.info adapter for chemical names, stable identifiers, structures, properties, pharmacology, safety notes, and source-aware records.

<span class="chemical-tooltip" data-query="2244" data-scope="pubchem">aspirin</span>
<span class="chemical-tooltip" data-query="CHEMBL25" data-scope="chembl">aspirin</span>
import { ChemicalTooltip } from 'bio-tooltips/mychem';

ChemicalTooltip.init({
  selector: '.chemical-tooltip'
});

Root Import

The root package exports the current tooltip modules:

import { GeneTooltip, ChemicalTooltip } from 'bio-tooltips';

Subpath imports remain preferred when an application wants to load only one tooltip module.

Documentation

Full documentation and examples are available in the docs folder and at the project site:

https://mattjmeier.github.io/bio-tooltips/

Supply Chain Notes

Bio Tooltips keeps its user-facing dependency surface intentionally small:

  • Runtime npm dependencies: tom-select, plus its npm dependencies @orchidjs/sifter and @orchidjs/unicode-variants.
  • Optional peer dependencies: d3, ideogram, and @rdkit/rdkit. These are not bundled into the package and are only needed for optional visual/structure-rendering features.
  • Published package contents: dist, README.md, LICENSE, and package.json.
  • External data/API sources used at runtime: MyGene.info for gene records, MyChem.info for chemical records, and PubChem image URLs for chemical structure images.

The release workflow installs from package-lock.json with npm ci and publishes to npm with provenance. For browser CDN usage, prefer a pinned package version instead of @latest.

Migrating From gene-tooltips

Replace package imports:

import { GeneTooltip } from 'gene-tooltips/mygene';

with:

import { GeneTooltip } from 'bio-tooltips/mygene';

Browser CDN paths also move to the new package and artifact names:

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/bio-tooltips.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/bio-tooltips.global.js"></script>

Package History

This package was originally developed as gene-tooltips and renamed to bio-tooltips as chemical and future entity modules were added.