Parsing remote CSV file in Node.js
Sep 28, 2021 · 2 min read · CSV format is a plain text file with comma-separated values. You will stumble upon number of articles explaining how to read csv file from the local machine. const fs = require('fs'); const parse = require('csv-parse'); fs.createReadStream('./cities...
Join discussion
