[${++counter}] ${title}
27 |${description.slice(0, 100)}
28 | Here's why 29 |├── README.md ├── preclass ├── annotations.txt ├── app │ ├── index.html │ ├── index.js │ ├── package-lock.json │ └── package.json └── server │ ├── animeflv.csv │ ├── package-lock.json │ ├── package.json │ └── server.js └── recorded ├── .vscode └── settings.json ├── app ├── index.html ├── index.js ├── package-lock.json └── package.json └── server ├── animeflv.csv ├── index-bug-resolvido.js ├── index.js ├── package-lock.json └── package.json /README.md: -------------------------------------------------------------------------------- 1 | # Webstreams nodejs and browser tutorial (ptbr) 2 | 3 | ## About 4 | Welcome, this repo is part of my [**youtube video**](https://youtu.be/-IpRYbL4yMk) about **How to read 10GB of JSON in the frontend without crashing the screen - Webstreams 101 (pt-br)** 5 | First of all, leave your star 🌟 on this repo. 6 | 7 | Access our [**exclusive telegram channel**](https://bit.ly/canalerickwendel) so I'll let you know about all the content I've been producing 8 | 9 | ## Complete source code 10 | - Access it in [app](./recorded/) 11 | 12 |  13 | 14 | 15 | ## Have fun! 16 | 17 | -------------------------------------------------------------------------------- /preclass/annotations.txt: -------------------------------------------------------------------------------- 1 | https://developer.chrome.com/articles/fetch-streaming-requests/ 2 | https://www.kaggle.com/datasets/danielalbarracinm/list-of-anime-from-1990-to-2022?resource=download 3 | https://www.tpeczek.com/2019/04/fetch-api-streams-api-ndjson-and-aspnet.html 4 | https://developer.mozilla.org/en-US/docs/Web/API/Streams_API/Using_writable_streams -------------------------------------------------------------------------------- /preclass/app/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 | 8 |