How to Convert CSV to Excel in Node.js ? Last Updated : 30 Jun, 2021 Comments Improve Suggest changes Like Article Like Report NodeJS has become one of the famous backend frameworks for development. So in this article, we'll see one of its use to convert CSV into Excel We will use CSVtoExcel npm package to do the conversion of files. It provides convertCsvToXlsx function to implement the conversion. convertCsvToXlsx(source, destination); Steps to Implement: Import path and csv-to-xlsx module.Specify the source and destination directory and the file name with path module function.Use try catch block for error detection.Call the convert function to convert csv to excel function.Check the destination directory, you'll see excel file. Modules Required: path: This module is used to join the path.csv-to-xlsx: This module provides functionality to convert csv to excel file. Â Creating Nodejs Application And Installing Module: Step 1: Run NPM init in cli and Enter the basic information npm init Step 2:Now, create app.js or index.js or anything in which we'll implement our function touch app.js Step 3: After creating the Nodejs application, Install the required modules using the following command: npm i path @aternur/csv-to-xlsx Project Structure: It will look like the following. Report.csv File Code: JavaScript // Importing modules const path = require('path'); const convertCsvToXlsx = require('@aternus/csv-to-xlsx'); // Specifying source directory + file name let source = path.join(__dirname, 'report.csv'); // Specifying destination directory + file name let destination = path.join(__dirname, 'converted_report.xlsx'); // try-catch block for handling exceptions try { // Functions to convert csv to excel convertCsvToXlsx(source, destination); } catch (e) { // Handling error console.error(e.toString()); } Output: Excel File: Comment More infoAdvertise with us Next Article How to Convert CSV to Excel in Node.js ? Y yogeshsherawat77 Follow Improve Article Tags : Web Technologies Node.js NodeJS-Questions Similar Reads How to Convert JSON to Excel in JavaScript? It is often necessary to export or download JSON data in the form of Excel spreadsheets when developing web applications, any web developer would be able to go through this article as it provides a useful function of converting JSON files to Excel format using SheetsJS through JavaScript.These are t 4 min read How to Convert Excel to JSON in JavaScript ? Converting Excel spreadsheets to JSON format is a common requirement in various applications. JavaScript code utilizes the read-excel-file library to parse the Excel data, convert it to JSON format, and display it. Additionally, it provides functionality to download the generated JSON file. Approach 3 min read How to Convert CSV to JSON in ReactJS ? Dealing with data in various formats is a common task in web development. CSV (Comma Separated Values) and JSON (JavaScript Object Notation) are two widely used formats for storing and transmitting data. Converting CSV to JSON is often required when working with data in ReactJS applications. Approac 4 min read How to Convert CSV to JSON in JavaScript ? In this article, we will explain different ways to change Comma-Separated Values (CSV) data into JavaScript Object Notation (JSON) format, step-by-step. We'll break down each method with clear explanations and examples. There are several approaches available in JavaScript to convert CSV to JSON in J 3 min read How to Convert JSON Object to CSV in JavaScript ? JSON (JavaScript Object Notation) and CSV (Comma-Separated Values) are two widely used formats, each with its own strengths and applications. Fortunately, JavaScript provides powerful tools to facilitate the conversion process between these formats. These are the following approaches: Table of Conte 3 min read Like