{"id":20340883,"url":"https://github.com/nbaua/cs-wf-core-json-merger","last_synced_at":"2026-04-07T20:31:21.701Z","repository":{"id":120255004,"uuid":"357065236","full_name":"nbaua/cs-wf-core-json-merger","owner":"nbaua","description":"Simple .Net Core 5 C# Winforms Application For Merging Multiple Large JSON files","archived":false,"fork":false,"pushed_at":"2021-04-12T06:27:42.000Z","size":188,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-04T14:49:29.187Z","etag":null,"topics":["application","core","cross-platform","csharp","file-format","json","json-data","jsonutil","jsonutility","merge-sort","netcore","netcore31","netcore5","windows","winform","winforms","winforms-application"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nbaua.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2021-04-12T05:09:57.000Z","updated_at":"2021-04-12T06:31:40.000Z","dependencies_parsed_at":null,"dependency_job_id":"39409cfc-f467-485f-a9cc-e2483c598c5d","html_url":"https://github.com/nbaua/cs-wf-core-json-merger","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/nbaua/cs-wf-core-json-merger","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nbaua%2Fcs-wf-core-json-merger","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nbaua%2Fcs-wf-core-json-merger/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nbaua%2Fcs-wf-core-json-merger/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nbaua%2Fcs-wf-core-json-merger/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nbaua","download_url":"https://codeload.github.com/nbaua/cs-wf-core-json-merger/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nbaua%2Fcs-wf-core-json-merger/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31528265,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T16:28:08.000Z","status":"ssl_error","status_checked_at":"2026-04-07T16:28:06.951Z","response_time":105,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["application","core","cross-platform","csharp","file-format","json","json-data","jsonutil","jsonutility","merge-sort","netcore","netcore31","netcore5","windows","winform","winforms","winforms-application"],"created_at":"2024-11-14T21:24:30.282Z","updated_at":"2026-04-07T20:31:21.673Z","avatar_url":"https://github.com/nbaua.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\n# cs-wf-core-json-merger\n### Simple .Net Core - C# Winforms Application, For Merging Multiple Large JSON files\n---\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://github.com/nbaua/cs-wf-core-json-merger/blob/master/screenshots/logo.png?raw=true\" alt=\"Sublime's custom image\"/\u003e\n\u003c/p\u003e\n\n### Why?\nRecently I built a online front-end and corresponding mobile app for a project which has a to be performant.\nThat naturally requires lots of test data, so I generated thousands of test records (Thanks to generatedata.com and mockaroo.com).\nLike every tool these two tools also has imposed some limits on generating and downloading the test data, so I have to get them in batches and download them as different files. \n\nAhh, nobody let me download 1Ml 🚀 test records for free. \nThat's Why ....\n\n``This tool is useful for just merging the JSON files, it is not a faker or random data generator.``\n\n### Preview \n![App in Action](https://github.com/nbaua/cs-wf-core-json-merger/blob/master/screenshots/app-snap.png)\n\n#### Features\n+ Merge Multiple JSON files with same schema/structure\n+ Supports merging both Object root nodes as well as Array root nodes\n+ Allows identifier configuration for Root Element (node) and Primary Key (id)\n+ Supports removal of duplicates based on the Primary Key configuration\n\t+ CAUTION: if files have different data but the primary keys are same, do NOT use this option, because the data would be lost, while merging.\n+ Supports sorting of all JSON elements after merging\n\t+ While sorting, user can regenerate the new sequential id or a random Guid\n\t+ CAVEAT: While regenerating the new Guid, the sorted sequence will get distorted due to randomizer, you might want to sort the merged file once again. (see todo section).\n+ Supports each element level sorting of key-value pairs based on the alphabetical ascending order. \n+ Generate different merge files for each steps performed, useful for debugging/little backup.\n+ Logs time taken for each step, if you're keen.\n\n#### BETA features (lots of testing required yet)\n+ Supports merging of deeply nested JSONs with same structure (tested up to 5 levels).\n+ Supports merging of different schema/structure with matching root nodes.\n+ Supports each element level sorting of nested objects schema/structure.\n\n#### TODO features\n+ After regenerating Guid the sort sequence needs to be re-sorted.\n+ Add more configurations for customizing the output.\n+ In few tests the generated element level sorts does not work with nested objects, which works well with top level nodes (specifically with dates in JSON string format).\n\n#### STEP to compare\n![Compare Results](https://github.com/nbaua/cs-wf-core-json-merger/blob/master/screenshots/compare.PNG)\n\n\n###  License\n\n[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n##### Use/Extend/Share/Distribute the project for FREE as you wish. Please retain the credits as is while doing so.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnbaua%2Fcs-wf-core-json-merger","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnbaua%2Fcs-wf-core-json-merger","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnbaua%2Fcs-wf-core-json-merger/lists"}