{"id":26736903,"url":"https://github.com/gappbox/mockly","last_synced_at":"2026-02-26T18:39:37.906Z","repository":{"id":274690515,"uuid":"921760937","full_name":"gappbox/mockly","owner":"gappbox","description":"Easily generate and manage mock data for testing and development","archived":false,"fork":false,"pushed_at":"2025-08-29T20:12:27.000Z","size":881,"stargazers_count":5,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-29T21:44:52.424Z","etag":null,"topics":["mockdata","nodejs","prototype","react"],"latest_commit_sha":null,"homepage":"https://mockly.codify.co.ua","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gappbox.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-01-24T15:09:19.000Z","updated_at":"2025-08-29T20:05:54.000Z","dependencies_parsed_at":"2025-07-24T13:50:23.811Z","dependency_job_id":null,"html_url":"https://github.com/gappbox/mockly","commit_stats":null,"previous_names":["gappbox/mockly"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/gappbox/mockly","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gappbox%2Fmockly","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gappbox%2Fmockly/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gappbox%2Fmockly/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gappbox%2Fmockly/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gappbox","download_url":"https://codeload.github.com/gappbox/mockly/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gappbox%2Fmockly/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29867578,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-26T18:27:06.972Z","status":"ssl_error","status_checked_at":"2026-02-26T18:26:57.848Z","response_time":89,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["mockdata","nodejs","prototype","react"],"created_at":"2025-03-28T02:05:32.004Z","updated_at":"2026-02-26T18:39:37.889Z","avatar_url":"https://github.com/gappbox.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🎯 Mockly\n\n[![GitHub Stars](https://img.shields.io/github/stars/gappbox/mockly?style=social)](https://github.com/gappbox/mockly/stargazers)\n[![License](https://img.shields.io/github/license/gappbox/mockly)](LICENSE)\n[![Docker Pulls](https://img.shields.io/docker/pulls/gappbox/mockly?logo=docker)](https://hub.docker.com/r/gappbox/mockly)\n[![Version](https://img.shields.io/docker/v/gappbox/mockly/latest?logo=docker)](https://hub.docker.com/r/gappbox/mockly/tags)\n[![Docker Image Size](https://img.shields.io/docker/image-size/gappbox/mockly/latest?logo=docker\u0026label=image%20size)](https://hub.docker.com/r/gappbox/mockly)\n\n\u003e Effortless mock data generation for testing, development, and prototyping.\n\n---\n\n## 🌟 Overview\n\nMockly is your powerful companion for generating and managing synthetic (mock) data.\n\nDesigned for:\n- 🛠️ **Testing** your application functionality\n- 🎨 **Prototyping** and showcasing UIs\n- ⚡ **Speeding up** your development workflows\n\nMockly helps you stop wasting time on manual data creation — and focus on building what matters.\n\n\n---\n\n## ✨ Features\n\n| Feature                     | Description                                                                |\n|-----------------------------|----------------------------------------------------------------------------|\n| 🔧 **Custom Fields**        | Define data fields with categories and types that fit your needs.          |\n| 🧩 **Field Templates**      | Use pre-configured templates to quickly apply common setups and save time. |\n| 🧪 **Mock Data Generation** | Generate structured JSON data that looks realistic.                        |\n| 🎯 **Adjustable Output**    | Set the exact number of records to generate.                               |\n| 📤 **Export Options**       | Easily export the data for use in other tools or applications.             |\n| 🌓 **Light \u0026 Dark Themes**  | Seamlessly switch between light and dark modes for a better UX.            |\n\n---\n\n## 🐳 Self-Hosting\n\nEasily run Mockly anywhere with **Docker** — perfect for local development, testing, or private use.\n\n### 🚀 Launch in Seconds\n\n**1. Pull the latest Mockly image:**\n\n```bash\ndocker pull gappbox/mockly:latest\n```\n\n**2. Run the container:**\n```bash\ndocker run -d -p 5174:5174 --name mockly gappbox/mockly:latest\n```\n\n### 📦 Docker Compose Setup\n\nIf you prefer Docker Compose for easier management:\n\n```yaml\nservices:\n  mockly:\n    container_name: mockly\n    image: gappbox/mockly:latest\n    ports:\n      - \"5174:5174\"\n    restart: always\n```\n**Steps:**\n\n1.\tSave the configuration as docker-compose.yml\n2.\tStart the container: `docker-compose up -d`\n3.\tAccess Mockly at http://localhost:5174\n\n---\n\n### 📄 License\n\n_Distributed under the MIT License. Feel free to use, modify, and contribute!_","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgappbox%2Fmockly","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgappbox%2Fmockly","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgappbox%2Fmockly/lists"}