Does React Native support SPDY?
See original GitHub issueDoes XMLHttpRequest
or Fetch
support SPDY in React Native?
Issue Analytics
- State:
- Created 8 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
HTTP2 and SPDY Protocols - Make HTTP Faster and Safer
SPDY supports all major browsers(firefox, chrome, opera, safari, ie). Why speedy is fast: 1. Compression. Speedy compresses the headers, it will ...
Read more >spdy - npm
This module named spdy but it provides support for both http/2 (h2) and spdy (2,3,3.1). Also, spdy is compatible with Express. Usage. Examples....
Read more >Using HTTP/2 with Next.js & Express - ITNEXT
Besides its name, the spdy package provides support for both HTTP/2 (H2) and spdy (2,3,3.1), is compatible with Express and provides natural http...
Read more >React Native Image requests over a single HTTP/2 connection
React Native Image requests over a single HTTP/2 connection · 2 · CloudFront supports HTTP/2 but it is not something that depends on...
Read more >SPDY on Rails | Bugsnag Blog
At Bugsnag we use SPDY on our production rails application. For our users who run modern browsers, this can make the site feel...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
RN uses NSURLSession so on iOS 8 it will use SPDY, and on iOS 9 and 10 it will use HTTP/2. Servers like NGINX are retiring SPDY so it probably makes sense to use HTTP/2.
RN supports HTTP/2 on iOS 9 and 10 (using NSURLSession) and Android (using OkHttp 3.4.1).
@matth3wga0 Did you find a way to make it work ?