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

hepburn

v1.2.1

Published

Convert Japanese Hiragana and Katakana script to, and from, Romaji using Hepburn romanisation

Downloads

137,015

Readme

Hepburn

Node.js module for converting Japanese Hiragana and Katakana script to, and from, Romaji using Hepburn romanisation.

Based partly on Takaaki Komura's kana2hepburn.

Install

npm install hepburn

Usage

var hepburn = require("hepburn");

fromKana(string)

var romaji1 = hepburn.fromKana("ひらがな");
var romaji2 = hepburn.fromKana("カタカナ");

Converts a string containing Kana, either Hiragana or Katakana, to Romaji.

In this example romaji1 will have the value HIRAGANA, romaji2 will have the value KATAKANA.

toHiragana(string)

var hiragana = hepburn.toHiragana("HIRAGANA");

Converts a string containing Romaji to Hiragana.

In this example hiragana will have the value ひらがな.

toKatakana(string)

var katakana = hepburn.toKatakana("KATAKANA");
var tokyo = hepburn.toKatakana("TŌKYŌ");

Converts a string containing Romaji to Katakana.

In this example katakana will have the value カタカナ and tokyo will have the value トーキョー.

cleanRomaji(string)

var cleaned = hepburn.cleanRomaji("SYUNNEI");
// cleaned === "SHUN'EI"

Cleans up a romaji string, changing old romaji forms into the more-modern Hepburn form (for further processing). Generally matches the style used by Wapro romaji. A larger guide to modern romaji conventions was used in building this method.

What this methods fixes:

  • Incorrect usage of the letter M. For example "Shumman" should be written as "Shunman".
  • Changing usage of NN into N', for example "Shunnei" becomes "Shun'ei".
  • Converting the usage of OU and OH (to indicate a long vowel) into OO.
  • Correct old usages Nihon-shiki romanization into Hepburn form. A full list of the conversions can be found in the hepburn.js file. For example "Eisyosai" becomes "Eishosai" and "Yoshihuji" becomes "Yoshifuji".

splitKana(string)

var hiragana = hepburn.splitKana("ひらがな");
var tokyo = hepburn.splitKana("トーキョー");

Splits a string containing Katakana or Hiragana into a syllables array.

In this example hiragana will have the value ["ひ", "ら", "が", "な"] and tokyo will have the value ["トー", "キョー"].

splitRomaji(string)

var tokyo = hepburn.splitRomaji("TŌKYŌ");
var pakkingu = hepburn.splitRomaji("PAKKINGU");

Splits a string containing Romaji into a syllables array.

In this example tokyo will have the value ["TŌ", "KYŌ"] and pakkingu will have the value ["PAK", "KI", "N", "GU"].

containsHiragana(string)

Returns true if string contains Hiragana.

containsKatakana(string)

Returns true if string contains Katakana.

containsKana(string)

Returns true if string contains any Kana.

containsKanji(string)

Returns true if string contains any Kanji.

Testing Build Status

Run the unit tests with:

npm test

Licence

Copyright 2013, 2014, 2015, 2018, 2020 Lovell Fuller and contributors.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.