@redoxengine/medical-word-uuid

Generate random identifiers containing medical terminology

Usage no npm install needed!

<script type="module">
  import redoxengineMedicalWordUuid from 'https://cdn.skypack.dev/@redoxengine/medical-word-uuid';
</script>

README

medical-word-uuid

generate fun, unique random IDs with medical terms

usage

uuid(length, appendNumber)

length - how many words to include. The wordlist is ~93k words so 2 words is 8.649 × 10^9 and 3 is 8.04357 × 10^14.

appendNumber - append an additonal 4 digits to the end to bump up uniqueness.

import {uuid} from @redoxengine/medical-word-uuid;
uuid()
'thermocoagulation-superficies'
uuid(3, true)
'envy-pegoxol-spongiositis-7384'

Wordlist is from glutanimate/wordlist-medicalterms-en I removed any with punctuation and lowercased everything cat data/wordlist.txt | grep -Eo '^[a-zA-Z0-9]+ | awk '{print tolower($0)}' |awk '{ printf "\"%s\",\n", $0 }' > src/words.ts