Node.js modules you should know about: request
catonmat.net
Node.js modules you should know about: request
1–9 of 9 posts
Re: Node.js modules you should know about: request
#2Re: Node.js modules you should know about: request
#3Request is really quite nice. It's the simple high-level counterpart to node's low-level HTTP client. Very useful "sweet spot" in the abstraction levels.
Re: Node.js modules you should know about: request
#4Re: Node.js modules you should know about: request
#5This is one of the modules everyone starts to build themselves, then realizes there's a much better version already built.
Re: Node.js modules you should know about: request
#6This is one of the modules everyone starts to build themselves, then realizes there's a much better version already built.
Unfortunately I've had the opposite experience: trying to use request then finding that I have to build my own. Mainly because it has no good pattern for both streaming and catching errors in a predictable fashion, the streaming isn't true streaming in most cases (try a 5GB file), and with binary files, it's tricky to nail the right encoding.
Re: Node.js modules you should know about: request
#7Re: Node.js modules you should know about: request
#8This is one of the modules everyone starts to build themselves, then realizes there's a much better version already built.
Unfortunately I've had the opposite experience: trying to use request then finding that I have to build my own. Mainly because it has no good pattern for both streaming and catching errors in a predictable fashion, the streaming isn't true streaming in most cases (try a 5GB file), and with binary files, it's tricky to nail the right encoding.