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
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -67,6 +67,7 @@ This means that you can use the same HTTP API across all runtimes, and it will b
67
67
-[Tauri's native HTTP plugin](https://tauri.app/plugin/http-client/) is automatically used when available
68
68
- Uses [`undici`](https://github.com/nodejs/undici) on Bun to [prevent strange headers issues](https://github.com/oven-sh/bun/issues/4529#issuecomment-2611447527)
69
69
- Provides optional `toXML()` and `toHTML()` helpers in `HttpResponse` for easier access with other packages, see [installation section to enable those](#optional-features)
70
+
- Uses a [native implementation of `fetch`](https://github.com/Vexcited/react-native-real-fetch) on React Native
70
71
71
72
## Installation
72
73
@@ -93,10 +94,10 @@ pnpm add schwi
93
94
94
95
### React Native
95
96
96
-
In future versions, you'll also have to install a native module to polyfill and provide a more accurate `fetch` implementation.
97
-
98
97
```bash
99
-
pnpm add schwi
98
+
# react-native-real-fetch is required to use features that
99
+
# are not supported by the default `fetch` implementation in React Native.
0 commit comments