-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Abort request on timeout #17
base: master
Are you sure you want to change the base?
Conversation
Codecov Report
@@ Coverage Diff @@
## master #17 +/- ##
==========================================
- Coverage 100% 95.65% -4.35%
==========================================
Files 1 1
Lines 43 46 +3
==========================================
+ Hits 43 44 +1
- Misses 0 2 +2
Continue to review full report at Codecov.
|
Can you look at / try this? a2158e6 It's been hanging out in a branch because I haven't had time to sufficiently test it yet and figure out my thoughts. The way it's set up is that it will honor the original timeout on redirects. Otherwise, a redirect from HTTP to HTTPS on a broken link won't abort after 3s, for example. I wanted to do it this way because this is how the browser version operates. It's (still) coming so they should be consistent IMO |
I haven't used this lib on the browser so I'm not sure of its behavior in that environment. From the looks of a request timings lib like szmarczak/http-timer it seems node.js has a particular way of timing things. I've been working on a project all day with this PR's features and there certainly seems to be quite a large delay from the initial request to raising the To be honest though, we might be OT'ing (over thinking) this one. lol Your repos are the first place I look for simple micro-libs that don't over complicate it's basic functionality. I'd say we veto this quirk to keep the lib easy as pie. 🥧 |
+1 million! 😄 I'm so inspired on Lukeed's way of work that I released my first micro lib Reflect, that replaces rsync-wrapper and doesn't depend on rsync, syncing directories in pure js with no dependencies. @lukeed, I really appreciate if you can take a look and give your feedback and opinion. :) My next task is to release a micro-library to replace the ultra-heavy browser-sync. (sorry to pollute the PR and sorry to make the readme completely inspired on yours 😄) |
@roblav96 Perhaps 😅 I was just worried about raising issue/concern with the browser version behaving differently than the server implementation. If you (both) don't think it's a big issue, then maybe I'll skip the extra legwork, albeit not much. @paulocoghi Looks cool! I don't have any uses for it, but seems like a clever concept. My only advice/concern is that you/your users may(?) have problems with the native Thank you both for the kind words 🙇 |
If the necessary extra work isn't a deterrent, I vote for the consistency. |
Currently, if
timeout
is defined inrequest options
, it's ignored and the request does not abort.Shamefully adopted from:
feross/simple-get/index.js#L65
@feross 🤓