pmontra 4 hours ago

I did this:

  const response = await fetch(
    url,
    {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json',
      },
      body: JSON.stringify(reqData),
    }
  );
  const resData: ApiResponse = await response.json();
then I parsed resData. The JSON in the response is still type checked but I don't have to fight anymore with the HTTP library. I can't remember what it was as it never made it into a commit.

1
josephg 4 hours ago

Yeah makes sense. Now that fetch is standardized and built in to node, frankly I don't see any reason to ever pull in request.