Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/panashemuriro/shona-zita

generate random fake shona names for use as placeholder names in mock ups
https://github.com/panashemuriro/shona-zita

Last synced: about 2 months ago
JSON representation

generate random fake shona names for use as placeholder names in mock ups

Awesome Lists containing this project

README

        

# shona-zita

![faker (1)](https://user-images.githubusercontent.com/87081585/138597901-dc91a2ab-70b7-46be-8d30-a2bb7c348b1e.png)

generate random fake shona first names, surnames, and full names from 1000 options for use as placeholder names in mock ups. Follow the steps below to use this package

## install
```
npm install shona-zita
```
## usage
```

const zita = require("shona-zita");
```

zita.zitaRekutanga( ) method generates a random first name of a person
```
const zita_remunhu_rekutanga = zita.zitaRekutanga(); // Panashe
```

zita.zitaRekupedzisira( ) method generates a random shona last name
```
const zita_remunhu_rekupedzisira = zita.zitaRekupedzisira(); // Muriro
```
zita.zitaRakazara( ) method generates a random shona full name

```
const zita_remunhu_rakazara = zita.zitaRakazara(); // Panashe Muriro
```

---