Using FS to read in a CSV

suggest change

fs is the File System API in node. We can use the method readFile on our fs variable, pass it a data.csv file, format and function that reads and splits the csv for further processing.

This assumes you have a file named data.csv in the same folder.

'use strict'

const fs = require('fs');

fs.readFile('data.csv', 'utf8', function (err, data) {
  var dataArray = data.split(/\r?\n/);
  console.log(dataArray);
});

You can now use the array like any other to do work on it.

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents