Ondra Urban

Results 108 comments of Ondra Urban

How does it work? What are you getting from the scrapes and what are you pushing? You can use `.pushData([item, item, item])` to push them in a single call instead...

Yeah, sorry @remusao . We still have not figured out if the performance will improve or not. I apologize.

I don't think encoding is a viable option, because it cannot really be decoded on the platform side. In URLs, when you pass `%20` it will be encoded as a...

I guess it could make sense specifically for URLs, as they are often used as keys. I.e. not a generic encoding function to handle everything, because it would most likely...

It's not implemented. There were not that many users requesting it and it's easy enough to implement by the users who need it. We might add it in the future,...

See the comment above by LeMoussel.

This is something that we've wanted to do for quite some time, but haven't really found the chance to design it. If you could, besides the use-cases, also suggest how...

Looks like a pretty large rewrite :) But I like it. Two notes: - let's keep callbacks dead and make this first class `async` `await` - if we do this,...

I was mostly referring to the usage of `next`, but it applies to callback control patterns in general. See the `koa` server where they implement middlewares using async await instead...

Yeah, those ideas sound good. Would be nice to see a few usage examples before we commit though. Just to verify assumptions and make sure everything looks clean.