This is the frontend application for the XLSX to CSV Converter App. It was originally bootstraped using Create-React-App and it has been converted to Vite React with Typescript support.
- Upload specific use XLSX file to server
- Server converts XLSX file to CSV file and sends it back to client
- Client displays converted CSV file information with a link to download the file
- Node.js 14.x or higher
- NPM 6.x or higher or Yarn 1.22.x or higher
- Clone the repo
git clone git@github.com:neenus/xlsx-to-csv-client.git
- Install NPM packages
npm install
or
yarn install
- Create a
.env
file in the root directory and add the following environment variables
VITE_API_BASE_URL=(API base URL goes here)
VITE_VERSION=$npm_package_version
- Start the development server
npm run dev
or
yarn dev
- Open the app in your browser
http://localhost:3000
In the project directory, you can run:
Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.\
The page will reload if you make edits. You will also see any lint errors in the console.
Builds the app for production to the dist
folder. It correctly bundles React in production mode and optimizes the build for the best performance. The build is minified and the filenames include the hashes. Your app is ready to be deployed! See the section about deployment for more information.
Runs ESLint to check for linting errors. See https://eslint.org/ for more information.
Runs the app in the production mode. The page will reload if you make edits.
Distributed under the MIT License. See https://opensource.org/licenses/MIT for more information.