package.json 6.9 KB
{
  "_args": [
    [
      {
        "raw": "httpntlm@1.6.1",
        "scope": null,
        "escapedName": "httpntlm",
        "name": "httpntlm",
        "rawSpec": "1.6.1",
        "spec": "1.6.1",
        "type": "version"
      },
      "/Users/fzy/project/koa2_Sequelize_project/node_modules/smtp-connection"
    ]
  ],
  "_from": "httpntlm@1.6.1",
  "_id": "httpntlm@1.6.1",
  "_inCache": true,
  "_location": "/httpntlm",
  "_nodeVersion": "0.12.2",
  "_npmOperationalInternal": {
    "host": "packages-16-east.internal.npmjs.com",
    "tmp": "tmp/httpntlm-1.6.1.tgz_1462189866942_0.9128970899619162"
  },
  "_npmUser": {
    "name": "samdecrock",
    "email": "sam.decrock@gmail.com"
  },
  "_npmVersion": "2.7.4",
  "_phantomChildren": {},
  "_requested": {
    "raw": "httpntlm@1.6.1",
    "scope": null,
    "escapedName": "httpntlm",
    "name": "httpntlm",
    "rawSpec": "1.6.1",
    "spec": "1.6.1",
    "type": "version"
  },
  "_requiredBy": [
    "/smtp-connection"
  ],
  "_resolved": "https://registry.npmjs.org/httpntlm/-/httpntlm-1.6.1.tgz",
  "_shasum": "ad01527143a2e8773cfae6a96f58656bb52a34b2",
  "_shrinkwrap": null,
  "_spec": "httpntlm@1.6.1",
  "_where": "/Users/fzy/project/koa2_Sequelize_project/node_modules/smtp-connection",
  "author": {
    "name": "Sam Decrock",
    "url": "https://github.com/SamDecrock/"
  },
  "bugs": {
    "url": "https://github.com/SamDecrock/node-http-ntlm/issues"
  },
  "dependencies": {
    "httpreq": ">=0.4.22",
    "underscore": "~1.7.0"
  },
  "description": "httpntlm is a Node.js library to do HTTP NTLM authentication",
  "devDependencies": {},
  "directories": {},
  "dist": {
    "shasum": "ad01527143a2e8773cfae6a96f58656bb52a34b2",
    "tarball": "https://registry.npmjs.org/httpntlm/-/httpntlm-1.6.1.tgz"
  },
  "engines": {
    "node": ">=0.8.0"
  },
  "gitHead": "c5cecb5a94ef1fd33d5234aec3fad8c59b920eb2",
  "homepage": "https://github.com/SamDecrock/node-http-ntlm#readme",
  "licenses": [
    {
      "type": "MIT",
      "url": "http://www.opensource.org/licenses/mit-license.php"
    }
  ],
  "main": "./httpntlm",
  "maintainers": [
    {
      "name": "samdecrock",
      "email": "sam.decrock@gmail.com"
    }
  ],
  "name": "httpntlm",
  "optionalDependencies": {},
  "readme": "# httpntlm\n\n__httpntlm__ is a Node.js library to do HTTP NTLM authentication\n\nIt's a port from the Python libary [python-ntml](https://code.google.com/p/python-ntlm/)\n\n## Install\n\nYou can install __httpntlm__ using the Node Package Manager (npm):\n\n    npm install httpntlm\n\n## How to use\n\n```js\nvar httpntlm = require('httpntlm');\n\nhttpntlm.get({\n    url: \"https://someurl.com\",\n    username: 'm$',\n    password: 'stinks',\n    workstation: 'choose.something',\n    domain: ''\n}, function (err, res){\n    if(err) return err;\n\n    console.log(res.headers);\n    console.log(res.body);\n});\n```\n\nIt supports __http__ and __https__.\n\n## Options\n\n- `url:`      _{String}_   URL to connect. (Required)\n- `username:` _{String}_   Username. (Required)\n- `password:` _{String}_   Password. (Required)\n- `workstation:` _{String}_ Name of workstation or `''`.\n- `domain:`   _{String}_   Name of domain or `''`.\n\nYou can also pass along all other options of [httpreq](https://github.com/SamDecrock/node-httpreq), including custom headers, cookies, body data, ... and use POST, PUT or DELETE instead of GET.\n\n## Advanced\n\nIf you want to use the NTLM-functions yourself, you can access the ntlm-library like this (https example):\n\n```js\nvar ntlm = require('httpntlm').ntlm;\nvar async = require('async');\nvar httpreq = require('httpreq');\nvar HttpsAgent = require('agentkeepalive').HttpsAgent;\nvar keepaliveAgent = new HttpsAgent();\n\nvar options = {\n    url: \"https://someurl.com\",\n    username: 'm$',\n    password: 'stinks',\n    workstation: 'choose.something',\n    domain: ''\n};\n\nasync.waterfall([\n    function (callback){\n        var type1msg = ntlm.createType1Message(options);\n\n        httpreq.get(options.url, {\n            headers:{\n                'Connection' : 'keep-alive',\n                'Authorization': type1msg\n            },\n            agent: keepaliveAgent\n        }, callback);\n    },\n\n    function (res, callback){\n        if(!res.headers['www-authenticate'])\n            return callback(new Error('www-authenticate not found on response of second request'));\n\n        var type2msg = ntlm.parseType2Message(res.headers['www-authenticate']);\n        var type3msg = ntlm.createType3Message(type2msg, options);\n\n        setImmediate(function() {\n            httpreq.get(options.url, {\n                headers:{\n                    'Connection' : 'Close',\n                    'Authorization': type3msg\n                },\n                allowRedirects: false,\n                agent: keepaliveAgent\n            }, callback);\n        });\n    }\n], function (err, res) {\n    if(err) return console.log(err);\n\n    console.log(res.headers);\n    console.log(res.body);\n});\n```\n\n## Download binary files\n\n```javascript\nhttpntlm.get({\n    url: \"https://someurl.com/file.xls\",\n    username: 'm$',\n    password: 'stinks',\n    workstation: 'choose.something',\n    domain: '',\n    binary: true\n}, function (err, response) {\n    if(err) return console.log(err);\n    fs.writeFile(\"file.xls\", response.body, function (err) {\n        if(err) return console.log(\"error writing file\");\n        console.log(\"file.xls saved!\");\n    });\n});\n```\n\n## More information\n\n* [python-ntlm](https://code.google.com/p/python-ntlm/)\n* [NTLM Authentication Scheme for HTTP](http://www.innovation.ch/personal/ronald/ntlm.html)\n* [LM hash on Wikipedia](http://en.wikipedia.org/wiki/LM_hash)\n\n\n## License (MIT)\n\nCopyright (c) Sam Decrock <https://github.com/SamDecrock/>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n",
  "readmeFilename": "README.md",
  "repository": {
    "type": "git",
    "url": "git://github.com/SamDecrock/node-http-ntlm.git"
  },
  "scripts": {
    "jshint": "jshint *.js"
  },
  "version": "1.6.1"
}