https://github.com/dburandt/skrabble
a simple tool for dynamic data mocking
https://github.com/dburandt/skrabble
fuzzing javascript mocking nodejs
Last synced: 6 months ago
JSON representation
a simple tool for dynamic data mocking
- Host: GitHub
- URL: https://github.com/dburandt/skrabble
- Owner: dburandt
- License: mit
- Created: 2019-10-10T00:24:48.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-03T07:56:14.000Z (over 3 years ago)
- Last Synced: 2025-09-24T05:21:24.638Z (10 months ago)
- Topics: fuzzing, javascript, mocking, nodejs
- Language: JavaScript
- Size: 508 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# skrabble
a simple tool for dynamic data mocking
## Setup
_Ensure you have **>= Node.js v4.9.1** installed to your workstation_
```sh
npm install skrabble
```
## Usage
How skrabble works in two lines of code:
```javascript
const skrabble = require(skrabble);
console.log(skrabble('name')); // 'Jane Doe'
```
That's it! To see the data types skrabble supports or to learn more, you can refer to the [documentation][docs].
## Acknowledgements
- skrabble is heavily influence by and uses much of its data from [faker.js](https://github.com/marak/Faker.js/)
[docs]: https://github.com/dburandt/skrabble/blob/master/docs/README.md