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

ithkuil-tools

v0.0.14

Published

A set of Ithkuil tools.

Downloads

37

Readme

ithkuil-tools

A set of Ithkuil tools, with more to come soon:

  • IPA Translation
  • Syllable Splitting (Beta)

Installation

npm install ithkuil-tools or yarn add ithkuil-tools.

Usage

IPA Translation

Import the provided helper function:

import { romanizedIthkuilToIpa } from './lib/index'

Then pass some romanized Ithkuil text to it to convert it to an IPA string representation:

const text = 'Wezvwaušburdóu yaizxra sai.' // "Be careful, your fork is actually a fennec."
const ipa: string | Error = romanizedIthkuilToIpa(text)

Note the return type of romanizedIthkuilToIpa(): string | Error. This is because the conversion isn't guaranteed, either because of bad input or an internal bug. Just Add a check to be able to access the actual result:

if (typeof ipa === 'string') console.log(ipa) // [wɛzvwauʃbuɹd̪óu jaɪzxɾa sai]

Conversely, you can inspect the returned error if that happens. It'll contain the error cause, what character index caused the failure, and the usual stack trace.

The full signature of the helper function is romanizedIthkuilToIpa(romanizedIthkuilText: string, options?: IpaConverterOptions): string | IpaConversionError. A few options can be provided, check the code for more details about those.

Syllable Splitting (Beta)

import {
    romanizedIthkuilToSyllables,
    romanizedIthkuilToSyllableBoundaries
} from "ithkuil-tools";

console.log(romanizedIthkuilToSyllables("Wezvwaušburdóu yaizxra sai")); // [ [ 'we', 'zvwauš', 'bur', 'dóu' ], [ 'yai', 'zxra' ], [ 'sai' ] ]
console.log(romanizedIthkuilToSyllableBoundaries("Wezvwaušburdóu yaizxra sai")) // [ [ 0, 2, 8, 11, 14 ], [ 0, 3, 7 ], [ 0, 3 ] ]

IPA-to-Speech (Experimental)

IPA to speech is using AWS Polly behind the scenes, so you'll need to authenticate:

import { IpaToSpeech } from 'ithkuil-tools'

const ipaToSpeech = new IpaToSpeech({
  credentials: {
    accessKeyId: 'accessKeyId',
    secretAccessKey: 'secretAccessKey',
  },
  region: 'region',
})

Use the speak method, passing in some IPA text, to get a buffer containg the corresponding audio. Remember this is an async function returning a promise, so use it accordingly.

The following example should get you started, it saves the audio to an MP3 file:

import * as fs from 'fs'

ipaToSpeech.speak('hɛˈloʊ wɝld')
  .then((buffer) => {
    fs.writeFileSync('hello_world.mp3', buffer)
    console.log(`Audio saved to file.`)
  })