0 comments (0 comments)5 reactions (5 reactions)0 assignees (0 assignees)JavaScript1,185 forks (1,185 forks)batch import
enhancementhelp wanted
Repository metrics
- Stars
- 13,543 stars (13,543 stars)
- PR merge metrics
- Avg merge 18h (Avg merge 18h)1 merged PR in 30d (1 merged PR in 30d)
Description
It’d be great if PapaParse could support asynchronous iteration because it lets you pull data – e.g.:
for await (const row of Papa.parse(bigFile, {asyncIteration: true})) {
console.log(row);
}
Contributor guide
- Research direction
- Research JavaScript async iteration (for await of) and study PapaParse's internal parsing pipeline to understand how to expose an async iterable from the parse method.
- Tech stack
- javascript
- Domain
- data
- Issue type
- Feature
- Prerequisites
- JavaScriptasync iteration