If you’re lazy like me, just Google "csv to json format" and pick the first 3 tools. Test all, and one usually works.
For repeat tasks, though, Node.js + `csvtojson` is worth setting up:
```javascript
const csvtojson = require('csvtojson');
csvtojson().fromFile('file.csv').then(json => console.log(json));
```
Saves time long-term.
For repeat tasks, though, Node.js + `csvtojson` is worth setting up:
```javascript
const csvtojson = require('csvtojson');
csvtojson().fromFile('file.csv').then(json => console.log(json));
```
Saves time long-term.
