https://github.com/repcomm/mergemate
merging csvs the easy way so I do less work
https://github.com/repcomm/mergemate
Last synced: 10 months ago
JSON representation
merging csvs the easy way so I do less work
- Host: GitHub
- URL: https://github.com/repcomm/mergemate
- Owner: RepComm
- Created: 2024-04-20T00:55:21.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-04-21T21:24:33.000Z (almost 2 years ago)
- Last Synced: 2025-01-28T08:52:25.767Z (12 months ago)
- Language: TypeScript
- Size: 174 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mergemate
### easily merge CSVs
#### written in typescript using preact

## implemented
- CSV parsing
- comma and newline delimiter
- quote escaping of comma for cell values
- converts to indexeddb store
- fast querying
- pagination
- renders quickly
- persistence across browser sessions
## mvp-todo
- mark column as key, unique, exclude
- key formula (ex: `a.trim().toLower()==b.trim().toLower()` )
- cell transform formula (ex: `v.trim().toLower()`)
- merge modes:
- union (include only rows where keys match comparison across sheets)
- exclusion (include only keys with no match comparison across sheets)
- union-keep (union + keep unmatched key rows)
- export and download serialized CSV
- export preview that live regenerates when options changed