Skip to content

Instantly share code, notes, and snippets.

@Harish2997
Created May 13, 2020 06:44
Show Gist options
  • Save Harish2997/a99568c8f41ef2de9d9caf39a8dbfd28 to your computer and use it in GitHub Desktop.
Save Harish2997/a99568c8f41ef2de9d9caf39a8dbfd28 to your computer and use it in GitHub Desktop.
Express-ntlm to get user details
var express = require('express'),
ntlm = require('express-ntlm');
var app = express();
app.use(ntlm());
app.all('*', function(request, response) {
response.end(JSON.stringify(request.ntlm)); });
app.listen(9000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment