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 🙏

© 2025 – Pkg Stats / Ryan Hefner

universal-rhymer

v0.1.1

Published

A Node.js library to find rhymes and count syllables from a CMU-style phoneme dictionary in ARPABET or IPA formats.

Readme

universal-rhymer

A Node.js library to find rhymes and count syllables from a CMU-style phoneme dictionary in ARPABET or IPA formats.

Installation

Install from npm:

npm install universal-rhymer

Usage

Use the library in your TypeScript or JavaScript project:

import { initDictionary } from "universal-rhymer";

async function demo() {
  const { countSyllables, findRhyme, findRhymesBySyllable } =
    await initDictionary("path/to/dict.txt");

  // Count syllables
  console.log(countSyllables("time"));
  // => 1

  // Find flat list of rhymes
  console.log(findRhyme("time"));
  // => ["rhyme", "lime", ...]

  // Find rhymes grouped by syllable count
  console.log(findRhymesBySyllable("time"));
  // => { 1: ["rhyme", "lime"], ... }
}

demo();

CLI Demo

A simple command-line demo is included in demo.ts. Run it with:

npm run demo -- path/to/dictionary [word]
  • path/to/dictionary: path to your ARPABET or IPA dictionary file
  • [word]: optional word to analyze (defaults to time)

CSV Conversion

Convert a CSV-based dictionary into the CMU/IPA format using csv2dict.ts:

  • If your CSV has a header row starting with word, it will be skipped.
  • Multiple phoneme columns:
    word,phoneme1,phoneme2,phoneme3
    time,T,AY,M
  • Single-quoted phoneme string:
    word,phonemes
    time,"T AY M"

Run the converter:

npm run csv2dict -- input.csv output.dict

The output.dict file can then be used directly:

npm run demo -- output.dict [word]

API Reference

async function initDictionary(
  path: string
): Promise<{
  /** Count syllables of a word using the first pronunciation */
  countSyllables(word: string): number;

  /** Find an array of words that rhyme with the input word */
  findRhyme(word: string): string[];

  /**
   * Find rhymes grouped by their syllable count.
   * Returns a mapping: syllableCount -> array of rhyming words
   */
  findRhymesBySyllable(word: string): Record<number, string[]>;
}>;

Contributing

Contributions, issues, and feature requests are welcome! Feel free to open an issue or pull request.

License

MIT