request-ntlm

0.0.6 • Public • Published

Request-NTLM

Module for authenticating with NTLM; An ntlm authentication wrapper for the Request module.

Install with NPM

$ npm install --save-dev request-ntlm

Usage

var ntlm = require('request-ntlm');
 
var opts = {
  username: 'username',
  password: 'password',
  domain: 'yourdomain',
  workstation: 'workstation',
  url: 'http://example.com/path/to/resource'
};
var json = {
  // whatever object you want to submit
};
ntlm.post(opts, json, function(err, response) {
  // do something
});

Dependencies (4)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i request-ntlm

    Weekly Downloads

    37

    Version

    0.0.6

    License

    ISC

    Last publish

    Collaborators

    • colynb