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

monkey-typewriter

v1.0.14

Published

Randomly generated words and slugs that look and sound like english words

Downloads

29

Readme

monkey-typewriter

Randomly generated words and slugs that look and sound like english words.

Infinite monkey theorem

The infinite monkey theorem states that a monkey hitting keys at random on a typewriter keyboard for an infinite amount of time will almost surely type any given text, such as the complete works of William Shakespeare.

^^ Totally a real thing!

Demo

Check out the live backend express example deployed on cyclic >> DEMO

The Monkey

Using some basic rules and probabilities in english vocabulary allows the Monkey to be really small! A unique and readable word accommodates most use-cases like id and slug generation. These often rely on much larger and sometimes unnecessary packages.

  • monkey-typewriter: 5.22 kB
  • random-word-slugs: 186.22 kB
  • faker: 10.1 MB thats over 2000 times bigger!

The Monkey comes up with words that look and sound like english words:

telebo
kuokesque
taity
nonfees
intave
exlission
unnoful
dengothal

Installation

npm i monkey-typewriter

Include as:

const Monkey = require('monkey-typewriter')

or

import * as Monkey from 'monkey-typewriter'

Usage

The Monkey has two methods right now, word and slug. Both produce unique strings from millions of possible combinations for a low collision probability.

  • word() - generates an english sounding word
  • slug(num) - generates kabob-slugs of length num
console.log(Monkey.word())
// > telepop
console.log(Monkey.slug())
// > chush
console.log(Monkey.slug(2))
// > memion-exlifacy
console.log(Monkey.slug(3))
// > confuedible-chored-repup

Contributing:

This package is written vanilla javascript and has no dependencies. We suggest to keep the complexity low to eliminate possible security issues