Replies: 3 comments 1 reply
-
|
Hey @kapouer, have you tried cloudnary? I've used it a few times and had no problem with support so far |
Beta Was this translation helpful? Give feedback.
-
|
Hi Mateus, |
Beta Was this translation helpful? Give feedback.
-
|
When testing multipart routes with The interesting test cases are usually:
I built an OSS package for this inspection step in Node.js: Even if your transport test is already passing, adding “untrusted upload” fixtures usually gives much better coverage for real-world file handling. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Dealing with multipart/formdata parsing is something that is very close to how Node manage streams, and doing it right, without introducing huge security vulnerabilities, is somewhat a difficult task.
Result: everyone use busboy, (a not-so-well-maintained module, IMO full of anti-patterns).
It would improve a lot "being able to upload to a Node web server" task to have a parser in the http module.
Beta Was this translation helpful? Give feedback.
All reactions