Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jofftiquez/faker-js-ui
Use Faker.js UI to easiliy generate fake (but realistic) data for testing and development using Faker.js.
https://github.com/jofftiquez/faker-js-ui
faker fakerjs fakerui hacktoberfest javascript
Last synced: about 2 months ago
JSON representation
Use Faker.js UI to easiliy generate fake (but realistic) data for testing and development using Faker.js.
- Host: GitHub
- URL: https://github.com/jofftiquez/faker-js-ui
- Owner: jofftiquez
- Created: 2023-05-18T03:54:46.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-04T06:19:44.000Z (over 1 year ago)
- Last Synced: 2024-11-09T18:48:07.663Z (2 months ago)
- Topics: faker, fakerjs, fakerui, hacktoberfest, javascript
- Language: JavaScript
- Homepage: https://fakerjsui.org
- Size: 744 KB
- Stars: 201
- Watchers: 2
- Forks: 7
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-pinoy-made - GitHub
README
# Faker.js UI
[Watch Demo Here](https://youtu.be/QYoqCh-wj_Q)
Web App and Browser Extension for [Faker.js](https://fakerjs.dev/).
Now available in [Chrome Web Store](https://chrome.google.com/webstore/detail/fakerjs-ui/onahjokmphbfmdihclgeehajfnpkpaja)!
The [app website](https://github.com/jofftiquez/fakerjsui.com) is also open for contribution.
## Features in development
- [X] Auto-fill forms using appropriate Faker.js methods
- [ ] Add prompt for arguments so users can maximize the parameters for each methods
- [X] Preview of copied/generated data## Development
There are 2 modes to develop Faker.js UI:
- **Web App (SPA)**: The Web App is a Quasar Framework and Vue.js 3 that can be run locally and deployed to a static hosting site.
- **Browser Extension**: The Browser Extension is a Quasar Framework and Vue.js 3 that can be run locally and deployed to the Chrome Web Store.To run the Web App locally:
```bash
# Install dependencies
yarn install# Run the app
yarn dev:spa # or yarn build:spa to build for production```
To run the Browser Extension locally:
```bash
# Install dependencies
yarn install# Run the app
yarn dev:bex # or yarn build:bex to build for production```