Alex Indigo

Results 143 comments of Alex Indigo

That's the goal, since node-form-data only works in nodejs. And browser has built-in functionality.

FormData is a stream. You can see it in the code, it invokes CombinedStream `append` with the passed value – https://github.com/form-data/form-data/blob/master/lib/form_data.js#L74 Which adds it to the _streams array. And when...

No, you don't have to convert buffer to stream for FormData to use it. But in order to access data "in the stream" after it was drained (sent) you need...

what you expect `form.get` to achieve?

@zhuangya Do you mind to elaborate how version of streams is affecting this issue? Thank you.

FormData is a Stream. It's drained when data is sent out. You may try to use one of the stream tools, like [through2](https://www.npmjs.com/package/through2) – to inspect content going through "pipes".

@danielgindi Sorry, somehow I missed it. I'm loving it. Let me try to run it locally for sanity check and I'll check what's up with AppWeird. Thanks a lot. It...

Seems like it's npm@2 issue. Let's update node version (both appveyor and travis) to 6, 8, 10.

Looks like that whole "NaN as chunked" use case is missing ![NaN therefore chunked](http://ia.gs/048af9068470/Image%202018-10-04%20at%208.48.21%20AM.png) Do you mind to update tests to cover that?

I think that and bumping node versions will bring us to the finish line. Then we'll cut new major version and everybody will be happy. :) Thank you.