-
-
Notifications
You must be signed in to change notification settings - Fork 935
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
4.0.0 #82
Merged
Merged
4.0.0 #82
Commits on Jul 15, 2015
-
Overall it is a bad practice to 'fix' internal modules within the other module. I think graceful-fs (https://github.com/isaacs/node-graceful-fs#global-patching) is good example, how to do this: ```js var http = require('http'); var https = requrie('https'); var infinityAgent = require('infinity-agent'); infinityAgent.patch(http); infinityAgent.patch(https); ``` This will enable global agent tuning in edge cases. Closes #73 and closes #60
Configuration menu - View commit details
-
Copy full SHA for 63d95b6 - Browse repository at this point
Copy the full SHA 63d95b6View commit details -
* Base logic moved into event-emitter and all APIs wrapped around it * read-all-stream combined into one place - less code duplication * Unzip stream now inherits all properties and function from response and returned instead of response Closes #66
Configuration menu - View commit details
-
Copy full SHA for 04dbc4b - Browse repository at this point
Copy the full SHA 04dbc4bView commit details
Commits on Jul 16, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 16f93ea - Browse repository at this point
Copy the full SHA 16f93eaView commit details -
Move setImmediate closer to sync event
> EventEmitter was made to be used as an abstraction around asynchronous events. Thus, when an event is emitted it will have happened on a different tick than when the event was set. See nodejs/node-v0.x-archive#8470 (comment)
Configuration menu - View commit details
-
Copy full SHA for a1eb3f7 - Browse repository at this point
Copy the full SHA a1eb3f7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 00a9129 - Browse repository at this point
Copy the full SHA 00a9129View commit details
Commits on Jul 18, 2015
-
Configuration menu - View commit details
-
Copy full SHA for b38a797 - Browse repository at this point
Copy the full SHA b38a797View commit details
Commits on Jul 23, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 8768176 - Browse repository at this point
Copy the full SHA 8768176View commit details
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.