Is there common practice for `HttpClient` (JS clie...
# ktor
t
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
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