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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@theresnotime/ipa-to-ssml

v1.2.0

Published

[![Node.js CI](https://github.com/theresnotime/ipa-to-ssml/actions/workflows/node.js.yml/badge.svg)](https://github.com/theresnotime/ipa-to-ssml/actions/workflows/node.js.yml) [![CodeQL](https://github.com/theresnotime/ipa-to-ssml/actions/workflows/codeql

Downloads

9

Readme

Node package for converting IPA to valid SSML elements

Node.js CI CodeQL install size

Sometimes you just wish there was a Node.js package that did a thing, such as convert IPA to a valid SSML element — sometimes you wish it so much you end up writing it. 😅

Installing

Go grab it on npmjs via npm i @theresnotime/ipa-to-ssml

You'll then be all set to require it:

const ipaToSSML = require('@theresnotime/ipa-to-ssml');

Simples!

IPA goes in..

We pass the represented word, its ipa representation, and optionally a variant of SSML to generate:

let ssmlResult = await ipaToSSML.convertToSSML('hello', '/həˈləʊ/', 'default');

..and SSML comes out!

<?xml version="1.0"?>
<speak version="1.1"
    xmlns="http://www.w3.org/2001/10/synthesis"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.w3.org/2001/10/synthesis
        http://www.w3.org/TR/speech-synthesis11/synthesis.xsd"
    xml:lang="en-US">
    <phoneme alphabet="ipa" ph="/həˈləʊ/">hello</phoneme>
</speak>

(don't blame me for how ugly that looks, blame the w3c...)

Variants

  • default — this is valid SSML, and should be accepted by all (SSML accepting) TTS engines
  • polly — for now, just a copy of default 🤷‍♀️ works with Amazon Polly
  • larynx — this larger SSML element is required for getting rhasspy/larynx (a very cool TTS engine..) to play ball

Contributing

This is the first module I've ever published to npmjs, and my first foray into Node modules, so there's bound to be things you spot and want to fix — I'd love to get your feedback and PRs!

Quick steps

  1. Fork n' clone this repo
  2. Do a npm install
  3. Run npm test because who knows, maybe its already broken
  4. Hack!

Tests? For JavaScript!?

In writing this I discovered Jest, a "delightful JavaScript Testing Framework with a focus on simplicity" — I dunno about that, as I've never written tests for JavaScript, but it was pretty painless :> they live in tests/ and the syntax for them is super simple.