You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+6-8
Original file line number
Diff line number
Diff line change
@@ -12,13 +12,11 @@ A light-weight module that brings `window.fetch` to node.js
12
12
13
13
I really like the notion of Matt Andrews' [isomorphic-fetch](https://github.com/matthew-andrews/isomorphic-fetch): it bridges the API gap between client-side and server-side http requests, so developers have less to worry about.
14
14
15
-
But I think the term [isomorphic](http://isomorphic.net/) is generally misleading: it gives developers a false sense of security that their javascript code will run happily on both controlled server environment as well as uncontrollable user browsers. When the latter is only true for a small subset of modern browsers, not to mention quirks in native implementation.
15
+
But I think the term [isomorphic](http://isomorphic.net/) is generally misleading: it gives developers a false sense of security that their javascript code will run happily on both controlled server environment as well as uncontrollable user browsers. When the latter is only true for a subset of modern browsers, not to mention quirks in native implementation.
16
16
17
17
Instead of implementing `XMLHttpRequest` in node to run browser-specific [fetch polyfill](https://github.com/github/fetch), why not go from node's `http` to `fetch` API directly? Node has native stream support, browserify build targets (browsers) don't, so underneath they are going to be vastly different anyway.
18
18
19
-
IMHO, it's safer to be aware of javascript runtime's strength and weakness, than to assume they are a unified platform under a singular spec.
20
-
21
-
Hence `node-fetch`, minimal code for a `window.fetch` compatible API.
19
+
Hence `node-fetch`, minimal code for a `window.fetch` compatible API on node.js runtime.
22
20
23
21
24
22
# Features
@@ -28,11 +26,11 @@ Hence `node-fetch`, minimal code for a `window.fetch` compatible API.
28
26
- Use native promise, but allow substituting it with [insert your favorite promise library].
29
27
30
28
31
-
# Difference to client-side fetch
32
-
33
-
- This module is WIP, see [Known limits](https://github.com/bitinn/node-fetch/blob/master/LIMITS.md) for details.
29
+
# Difference from client-side fetch
34
30
35
-
(If you spot a missing feature that `window.fetch` offers, feel free to open an issue. Pull requests are welcomed too!)
31
+
- See [Known limits](https://github.com/bitinn/node-fetch/blob/master/LIMITS.md) for details.
32
+
- If you happen to use a missing feature that `window.fetch` offers, feel free to open an issue.
0 commit comments