https://kotlinlang.org logo
#ktor
Title
# ktor
t

turansky

10/30/2020, 1:45 PM
Is there common practice for
HttpClient
(JS client) ? Do I need single
HttpClient
if I have single API source?
Copy code
GET /api/a
GET /api/b
GET /api/c
GET /api/d
a

andylamax

10/30/2020, 5:20 PM
I remember reading somewhere in the docs, saying its fine to use a single HttpClient or create one when in need. Personally, I use a single HttpClient
😀 3