I\'m trying to write a simple script that requests some data from a tool on an internal network. Here is the code:
#!/usr/bin/node var https = require(\'htt
If you are on Windows, you can use the SSPI interface. It is exposed on Node with the project node-expose-sspi.
node-expose-sspi
The SSPI interface allows you to write any client or server using SSO (NTLM and Kerberos).
https://github.com/jlguenego/node-expose-sspi
Note: I am the author of node-expose-sspi.