npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ntlm-webapi

v1.0.4

Published

Easily call a Windows authenticated WebAPI from Node

Downloads

53

Readme

ntlm-webapi

Easily call a Windows authenticated web api service from Node

Inspired by the ChrisGeorge Framework

NPM

build status

Installation (via npm)

$ npm install ntlm-webapi

Usage

Calling it from your app using a node style callback:

    var Request = require('ntlm-webapi');

    var request = new Request({
        url: "http://some.restful.api.org/you/want/to/call",
        username: 'username',
        password: 'password',
        domain: 'company_domain'
    });

    request.get(function(err, result){

        if (err) console.log (err);

        console.log (result);
    });

Calling it from your app using the promise based api:


    var Request = require('ntlm-webapi');

    var request = new Request({
        url: "http://some.restful.api.org/you/want/to/call",
        username: 'username',
        password: 'password',
        domain: 'company_domain'
    });

    request.get()

        .then(function(result){
            console.log (result)
        })

        .error(function(err){
            console.log (err)
        });

Authorizing the request first, and storing the token for subsequent calls

Alternatively, you can authorize the request when you start your web server so that subsequent calls will use the already authorized service call.

When authorizing first, you must pass the HTTP verb you plan to use when executing the service so ntlm-webapi knows which method to authenticate you against.

When authorizing first, you won't be logging in with each request. Keepaliveagent is used to keep the socket open. The following example shows how you can wire up a route after you've authorized the service so your app won't keep reauthorizing the service, but instead stay authorized with a cached token it received from the initial auth request.

    var WebApi = require('ntlm-webapi');

    var webapi = new WebApi({
        url: "http://some.restful.api.org/you/want/to/call",
        username: 'username',
        password: 'password',
        domain: 'company_domain'
    });

    webapi.authorize('GET')

       /* token is not used here, but shown to illustrate it exists.
          It's cached in the `webapi` object  */

        .then (function(token){

            app.get('/your/own/express/route',function(req, res) {

                webapi.get()
                    .then(function(result){
                        res.status(200).json(result);
                    })
                    .error(function(err){
                        res.status(500).json({error:err});
                    }
                });
        })

        .error(function(err){

          /* an error that ntlm-webapi could not authorize the web api service for some reason so throw the error
          */

          throw err;

        };

Authorizing the request first and stringing promises

All methods return a promise so you can also string a group of promises like so

    var WebApi = require('ntlm-webapi');

    var webapi = new WebApi({
        url: "http://some.restful.api.org/you/want/to/call",
        username: 'username',
        password: 'password',
        domain: 'company_domain'
    });

    webapi.authorize('GET')
        .then (function(token){

            return request.get() })

        .then(function(result){
            console.log (JSON.stringify(result, undefined, '\t'));
        })

        .error(function(error){
            console.log (error)
        })
    ;

Post Method

As of this version, only GET has been tested. POST is beta but has an API where you pass in the body as a json object. Multi-part is not yet handled.

    var WebApi = require('ntlm-webapi');

    var webapi = new WebApi({
        url: "http://some.restful.api.org/you/want/to/call",
        username: 'username',
        password: 'password',
        domain: 'company_domain'
    });

    webapi.post({some:'data', to:'post'})

        .then(function(result){
            console.log (JSON.stringify(result, undefined, '\t'));
        })

        .error(function(error){
            console.log (error)
        })
    ;

Configuration Object Options

| Option | Description | --- | --- | url | set to the full url address of the windows webapi you're calling. Be sure to include the protocol http:\\ or https:\\ in the address *note: only works with http right now | username | set this to your windows user account or a windows service account on the windows machine where the service resides | password | set to the windows account password for the account used above | domain | set to the windows domain where the service resides | workstation | (Optional) set to the windows workstation name if required by your network

Other Notes

  • The API will handle retry's if the connection closes because the connection has been idle. A retry will be sent to reauthorize the request. It will only try once, and then fail if unsuccessful on the second try.

Author

Follow me (@javascriptbully) on Twitter!

Justin Winthers ([email protected])