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

num2kana

v1.0.2

Published

converts numerals to hiragana, katakana or kanji

Downloads

20

Readme

num2kana

This package helps you translate numbers into Japanese writing systems, making it a useful tool for learning how to count in Japanese. While numbers are most commonly written in kanji, this package also supports conversion to hiragana and katakana—great for practicing pronunciation and understanding native usage.

Check out this demo! It shows how the package can be utilized. You can use it to learn all about japanese numerals.

Installation

npm install num2kana

Usage

Basic Usage

import { 
  numToKana
  numToKanji, 
  numToHiragana, 
  numToKatakana, 
  numToRomaji,
  numToAllFormats 
} from 'num2kana';

// Convert numbers to kanji (default)
console.log(numToKanji(42)); // 四十二

// Convert to hiragana
console.log(numToHiragana(42)); // よんじゅうに

// Convert to katakana
console.log(numToKatakana(42)); // ヨンジュウニ

// Convert to romaji
console.log(numToRomaji(42)); // yonjuuni

// Get all formats at once
const allFormats = numToAllFormats(42);
console.log(allFormats);
// {
//   kanji: '四十二',
//   hiragana: 'よんじゅうに',
//   katakana: 'ヨンジュウニ',
//   romaji: 'yonjuuni'
// }

Larger Numbers

The package supports numbers up to 10^20:

// Ten thousand (myriad) in Japanese
console.log(numToKanji(10000)); // 一万

// One million
console.log(numToKanji(1000000)); // 百万

// One billion
console.log(numToKanji(1000000000)); // 十億

// Example with a mixed number
console.log(numToKanji(12345)); // 一万二千三百四十五
console.log(numToHiragana(12345)); // いちまんにせんさんびゃくよんじゅうご

Options

You can customize the output with options:

// For romaji, you can control spacing between number groups
console.log(numToRomaji(12345, { spaceRomaji: true })); // ichi man nisen sanbyaku yonjuu go
console.log(numToRomaji(12345, { spaceRomaji: false })); // ichimannisensanbyakuyonjuugo

// You can also use main method with options
console.log(numToKana(42, {type: "romanji", spaceRomanji: true})) // yonjuu ni
console.log(numToKana(42, {type: "katakana"})) // ヨンジュウニ

Default options

{
  type: "kanji",
  spaceRomaji: true
}

License

MIT

Author

@mammamu4