Skip to content
This repository has been archived by the owner on Aug 15, 2024. It is now read-only.

Commit

Permalink
Merge pull request #41 from terinjokes/terin/stream-http
Browse files Browse the repository at this point in the history
feat(libs): replace `http-browserify` with `stream-http`.
  • Loading branch information
jhnns committed Nov 7, 2016
2 parents b894774 + 6f078f8 commit 1fe30d4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Some modules have mocks in the `mock` directory. These are replacements with min
| domain | [bevry/domain-browser](https://github.com/bevry/domain-browser) | --- |
| events | [Gozala/events](https://github.com/Gozala/events) | --- |
| fs | --- | --- |
| http | [substack/http-browserify](https://github.com/substack/http-browserify) | --- |
| http | [jhiesey/stream-http](https://github.com/jhiesey/stream-http) | --- |
| https | [substack/https-browserify](https://github.com/substack/https-browserify) | --- |
| module | --- | --- |
| net | --- | [net.js](https://github.com/webpack/node-libs-browser/blob/master/mock/net.js) |
Expand All @@ -42,4 +42,4 @@ Some modules have mocks in the `mock` directory. These are replacements with min
| url | [defunctzombie/node-url](https://github.com/defunctzombie/node-url) | --- |
| util | [defunctzombie/node-util](https://github.com/defunctzombie/node-util) | --- |
| vm | [substack/vm-browserify](https://github.com/substack/vm-browserify) | --- |
| zlib | [devongovett/browserify-zlib](https://github.com/devongovett/browserify-zlib) | --- |
| zlib | [devongovett/browserify-zlib](https://github.com/devongovett/browserify-zlib) | --- |
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ exports.dns = null;
exports.domain = require.resolve('domain-browser');
exports.events = require.resolve('events/');
exports.fs = null;
exports.http = require.resolve('http-browserify');
exports.http = require.resolve('stream-http');
exports.https = require.resolve('https-browserify');
exports.module = null;
exports.net = null;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
"crypto-browserify": "^3.11.0",
"domain-browser": "^1.1.1",
"events": "^1.0.0",
"http-browserify": "^1.3.2",
"https-browserify": "0.0.1",
"os-browserify": "~0.2.0",
"path-browserify": "0.0.0",
Expand All @@ -25,6 +24,7 @@
"querystring-es3": "~0.2.0",
"readable-stream": "^2.0.5",
"stream-browserify": "^2.0.1",
"stream-http": "^2.3.1",
"string_decoder": "~0.10.25",
"timers-browserify": "^1.0.1",
"tty-browserify": "0.0.0",
Expand Down

0 comments on commit 1fe30d4

Please sign in to comment.