https://github.com/kevindmorris/csv2j
CLI to convert CSV to JSON with number and boolean coercion.
https://github.com/kevindmorris/csv2j
cli converter csv json
Last synced: 8 months ago
JSON representation
CLI to convert CSV to JSON with number and boolean coercion.
- Host: GitHub
- URL: https://github.com/kevindmorris/csv2j
- Owner: kevindmorris
- License: mit
- Created: 2025-08-01T14:14:24.000Z (8 months ago)
- Default Branch: master
- Last Pushed: 2025-08-01T14:23:52.000Z (8 months ago)
- Last Synced: 2025-08-01T16:31:02.230Z (8 months ago)
- Topics: cli, converter, csv, json
- Language: JavaScript
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# csv2j
> CLI to convert CSV to JSON with number and boolean coercion.
## Install
From npm
```sh
npm install -g csv2j
```
or, run without installing
```sh
npx csv2j -i employees.csv
```
## Usage
```sh
csv2j -i employees.csv
```
### Options
- -i, --input CSV input path
- -o, --output JSON output path (defaults to input basename .json)
- -d, --delim delimiter (default ",")
- --version print the version
- --help review help documentation