I am new to nodejs and I am trying to call an api server with url parameters stored in a text file. The text file is a large one (around 20 gb). Now how can I read that file and make urls based on the parameters and call the api server?
The api server doesn't return much information. It just returns OK or nothing. So, the response doesn't matter now. It can be a 'fire and forget' request. If we can handle response, it will be good so that I can re run failed requests (if any) based on response code or response text
Thanks