This project is a TypeScript-based web application that converts CSV files into JSON format. It uses Vite as a build tool and module bundler, providing fast rebuilds and a modern development experience.
- Upload CSV files through a web interface.
- Convert CSV to structured JSON.
- Display JSON output in a formatted text area.
Before you start, ensure you have the following installed:
Clone the repository and install the dependencies:
git clone https://github.com/DrPye/csv-to-js.git
cd csv-to-js
npm installStart the development server with:
npm run devThis will compile your TypeScript code and serve the application on http://localhost:3000.
- Navigate to
http://localhost:3000in your browser. - Use the form to select and submit a CSV file.
- View the converted JSON output in the textarea below the form.
To build the application for production, run:
npm run buildThis will generate a dist directory with your optimized project files.
Contributions are welcome. Please open an issue first to discuss your ideas or concerns.
This project is licensed under the MIT License. See the LICENSE file for details.