kurdish-nicknames

Kurdish (Kurmanji) nicknames generator with their meanings in English

Usage no npm install needed!

<script type="module">
  import kurdishNicknames from 'https://cdn.skypack.dev/kurdish-nicknames';
</script>

README

kurdish-nicknames

Kurdish nicknames generator package that generates high quality Kurdish (Kurmanji) nicknames for both genders and their meanings in English.
https://www.npmjs.com/package/kurdish-nicknames

Features:

  • ~50K possible different combinations of names
  • Easy to use
  • Meanings in English (are done manually)
  • You can choose the names for male, female or the names that can be used by both genders

Install:

With NPM:

npm i kurdish-nicknames

OR with Yarn:

yarn add kurdish-nicknames

Usage:

import {KurdishNicknames} from 'kurdish-nicknames'

// KurdishNicknames.generate(GENDER,
//                          MAX LENGTH PER NAME (EACH FIRST AND LAST NAME),
//                          NUMBER OF NAMES TO BE GENERATED)
let generated_names_items = KurdishNicknames.generate("both", 15, 1)


Sample output object (single object for 1 name or an array of objects for more):

{
  first_name: 'Şevreş',
  last_name: 'Batman',
  first_name_meaning: 'Dark night',
  last_name_meaning: 'It is a city name located in Bakur or Northern Kurdistan',
  gender: 'both'
}

Testing:

You can test with Mocha:

npm test