What is CSV to JSON conversion?
CSV is a table: one line per record, values separated by a delimiter, and usually a first row naming the columns. JSON is a structure: named keys, real types, and nesting to any depth. Converting between them means deciding what each column is called, what type each value should be, and whether any of it should nest.
client,project,budget,activeNorthwind Trading,Storefront rebuild,48000,true [ { "client": "Northwind Trading", "project": "Storefront rebuild", "budget": 48000, "active": true }]Note what happened to 48000 and true: they became a number and a boolean rather than strings. That is the part worth being careful about, and this converter is deliberately cautious about it — see below.
Everything runs in your browser. The files people convert are customer exports, order histories and internal reports, so nothing here is uploaded, stored or logged.