convify
v1.0.2
Published
CLI tool that converts CSV to JSON and JSON to CSV
Downloads
4
Readme
Convify - CSV to JSON and JSON to CSV Converter CLI
Convify is a Command Line Interface (CLI) tool designed for converting CSV files to JSON and JSON files to CSV effortlessly.
Installation
npm install -g convify
Usage
Convert JSON to CSV
convify JTC <inputFile> <outputFile>
inputFile
: The input JSON file path.outputFile
: The output CSV file path.
Convert CSV to JSON
convify CTJ <inputFile> <outputFile>
inputFile
: The input CSV file path.outputFile
: The output JSON file path.
Example
JSON to CSV
convify JTC input.json output.csv
CSV to JSON
convify CTJ input.csv output.json
Dependencies
Author
Contributing
Contributions are welcome! To contribute to convify
, follow these steps:
- Fork the repository.
- Create a branch:
git checkout -b feature/new-feature
. - Make your changes and commit them:
git commit -m 'Add new feature'
. - Push to the branch:
git push origin feature/new-feature
. - Submit a pull request.
Acknowledgments
Special thanks to the maintainers of the dependencies used in this project.
Happy converting with Convify!