Skip to content

Instantly share code, notes, and snippets.

@YuukiToriyama
Created April 5, 2021 10:49
Show Gist options
  • Save YuukiToriyama/9221ada130821715f45d1d9639cf641f to your computer and use it in GitHub Desktop.
Save YuukiToriyama/9221ada130821715f45d1d9639cf641f to your computer and use it in GitHub Desktop.
fs.createReadStream & csv.parse
const stream = fs.createReadStream("data/hokkaido.csv").pipe(csv.parse());
stream.on("data", data => {
console.log(data);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment