On my server i have multiple ip addresses. I need to make API call from my node.js server to external service, but i need to make it from specific ip address each time (the ip depend on many factors).
it seems that HTTP
module of node support localAddress
property to specify from what ip address send the request but some library I import use the fetch method.
How i can tell fetch
method to make http request from a specific ip address?