Windows Integrated Authentication in node.js Client
When using node.js as a client, is it possible to connect to a server using Windows integrated authentication (e.g. when connecting to IIS)? My searches for this only turn up results where node.js is used as a server. Update: There are now some modules that implement Windows-integrated authentication. node-sspi uses SSPI (the Windows security API) to handle the server side of things, but does not do client auth . There are several client implementations such as http-ntlm , but they are not truly integrated since they require the user password -- they do not use SSPI to do transparent auth.