I have a C# library with a Login() method that returns an HttpClient which is to be used in subsequent calls (to get more pages after login). In a C# app I would make a Login() call, save the returned HttpClient and then make as many calls as I want for other pages.
Is that possible using edge in NodeJS? Is it possible to return a complex object (HttpClient) to NodeJs and then have NodeJS pass this object when making the next call?