![]() |
.. (לתיקייה המכילה) | |
How can I access local files from the browser? Fetch or any other library didn't work. | |
Use the html input tag, and the FileReader module to enable the user to upload files. You can assume the file's names are the same as in the zip. |
I can't use require in my browser, why that's happening? | |
require is a function from node.js, which is a server-side interpreter for javascript. The run-time environment of server and browser are very different so some functions don't exist in both. For including libraries you can download them or use the first option provided in the assignment. The PDF will be updated accordingly. |
Can I use external library to parse CSV? | |
Yes, you can use other JS libraries to parse the CSV files, as long as they don't require us to download anything. |