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

browser-gimei

v0.1.0

Published

random Japanese name and address generator. browser port of nodejs port of gimei

Downloads

12

Readme

browser-gimei

Random Japanese name/address generator. Generates random data in either kanji, hiragana, or katakana.

Refactor of node-gimei, which is in turn a Node.js version of gimei. Made to work in browsers.

Install

Using npm:

$ npm install browser-gimei

Using yarn:

$ yarn add browser-gimei

Using bower:

$ bower install browser-gimei

Load

From npm:

const gimei = require('browser-gimei');

From Bower:

<script src="/bower_components/browser-gimei/dist/gimei.min.js"></script>

gimei Object loads into global scope from the above script.

Usage

gimei is an Object that contains multiple methods which return various randomly-generated data.

name()

Returns fictitious name:

var name = gimei.name();
console.log(name.kanji());                         // "斎藤 陽菜"
console.log(name.hiragana());                      // "さいとう はるな"
console.log(name.katakana());                      // "サイトウ ハルナ"
console.log(name.last().kanji());                  // "斎藤"
console.log(name.last().hiragana());               // "さいとう"
console.log(name.last().katakana());               // "サイトウ"
console.log(name.first().kanji());                 // "陽菜"
console.log(name.first().hiragana());              // "はるな"
console.log(name.first().katakana());              // "ハルナ"

male()

Returns fictitious male name:

    var male = gimei.male();
    console.log(male.kanji());                     // "小林 顕士"
    console.log(male.isMale());                    // true
    console.log(male.isFemale());                  // false

female()

Returns fictitious female name:

    var female = gimei.female();
    console.log(female.kanji());                   // "根本 彩世"
    console.log(female.isMale());                  // false
    console.log(female.isFemale());                // true

address()

Returns fictitious address containing, or any one of, prefecture, city, and town:

    var address = gimei.address();
    console.log(address.kanji());                  // 岡山県 大島郡大和村 稲木町
    console.log(address.hiragana());               // おかやまけん おおしまぐんやまとそん いなぎちょう
    console.log(address.katakana());               // オカヤマケン オオシマグンヤマトソン イナギチョウ
    console.log(address.prefecture().kanji());     // 岡山県
    console.log(address.prefecture().hiragana());  // おかやまけん
    console.log(address.prefecture().katakana());  // オカヤマケン
    console.log(address.city().kanji());           // 大島郡大和村
    console.log(address.city().hiragana());        // おおしまぐんやまとそん
    console.log(address.city().katakana());        // オオシマグンヤマトソン
    console.log(address.town().kanji());           // 稲木町
    console.log(address.town().hiragana());        // いなぎちょう
    console.log(address.town().katakana());        // イナギチョウ

Links

  • https://github.com/demiglacesource/node-gimei
  • https://github.com/willnet/gimei