I need to use node.js to communicate with a server using NTLM proxy authentication.
I have used 2 modules:
- node-curl https://github.com/jiangmiao/node-curl
- request, coming highly recommended htps://github.com/mikeal/request
I found no documentation for the request module for ntlm , and though node-curl supports the curl easy options , I found no documentation about how to specify the CURLAUTH_NTLM for the CURLOPT_HTTPAUTH.
I want to know how to take care of the NTLM proxy authentication. I would love to continue using the request module.