https://github.com/alimehasin/dunna
Generate random data joyfully
https://github.com/alimehasin/dunna
data fake javascript nodejs typescript
Last synced: 4 months ago
JSON representation
Generate random data joyfully
- Host: GitHub
- URL: https://github.com/alimehasin/dunna
- Owner: alimehasin
- License: mit
- Created: 2022-05-14T10:47:25.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-04-22T18:10:08.000Z (about 1 year ago)
- Last Synced: 2025-08-09T05:02:22.904Z (11 months ago)
- Topics: data, fake, javascript, nodejs, typescript
- Language: TypeScript
- Homepage: https://dunna.vercel.app
- Size: 3.46 MB
- Stars: 7
- Watchers: 1
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dunna
Dunna generates random data based on given parameters
## Get started
### Installation
```sh
# Using npm
npm install dunna
```
```sh
# Using yarn
yarn add dunna
```
### Import dunna
```ts
import { dunna } from "dunna";
```
### Calling dunna functions
```ts
import { dunna } from "dunna";
// Get a random integer
dunna.basic.integer();
// Get a random female name
dunna.person.firstName({ gender: "female" });
// Get a random city name
dunna.location.cityName();
```
### Support
If you want to support this project you can do so by giving us a star or tweeting about us.
And if you want to contribute to dunna please check the [contribution guide.](https://github.com/alimehasin/dunna/blob/main/CONTRIBUTING.md)
### Contributors