mafintosh / csv-parser

Streaming csv parser inspired by binary-csv that aims to be faster than everyone else
MIT License
1.41k stars 134 forks source link

Update README.md with a full stream process #175

Open pbrink231 opened 4 years ago

pbrink231 commented 4 years ago

Added a streaming method to process csv line items without loading into memory

This PR contains:

Breaking Changes?

If yes, please describe the breakage.

Please Describe Your Changes

This will show a way to process a csv line by line without loading it into memory. Very useful for large files and allows async/await on each line. Used to contact a database or third party api with the information in the line and pause the process while it happens.

codecov-io commented 3 years ago

Codecov Report

Merging #175 (4b5492a) into master (dd5123b) will not change coverage. The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff           @@
##           master     #175   +/-   ##
=======================================
  Coverage   97.20%   97.20%           
=======================================
  Files           1        1           
  Lines         143      143           
=======================================
  Hits          139      139           
  Misses          4        4           

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update dd5123b...4b5492a. Read the comment docs.