-
When using FormData to upload a file in the browser, you can pass it a File which is actually a Blob and that can lazily represent a huge file. This isn't possible in Node, you need to use something like https://github.com/form-data/form-data to work with memory efficiently. Is Blob support planned? |
Beta Was this translation helpful? Give feedback.
Replies: 0 comments 5 replies
-
Blob was added in Node.js 18. |
Beta Was this translation helpful? Give feedback.
-
Argh, totally missed that, sorry. "blob" and "file" are hard to search on 😅. But |
Beta Was this translation helpful? Give feedback.
Blob was added in Node.js 18.