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 |
0 replies
|
Hi Mateus, |
1 reply
|
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. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
All reactions