1.0.0 • Published 8 years ago

adal-node-null-cache v1.0.0

Weekly downloads
5
License
ISC
Repository
github
Last release
8 years ago

adal-node-null-cache

Windows Azure Active Directory Authentication with a Null Cache

build status dependency status

Installation

npm install --save adal-node adal-node-null-cache

Usage

var NullCache = require('adal-node-null-cache').NullCache;
var adal = require('adal-node');
var context = new adal.AuthenticationContext(authority, validateAuthority, new NullCache());

This modules uses adal-node as an optional peer dependency. If adal-node is installed and accessible, adal-node-null-cache will expose all of the methods of adal-node, and a createAuthenticationContext method that uses a NullCache instead of a global MemoryCache.

var adal = require('adal-node-null-cache');
var context = adal.createAuthenticationContext(authority, validateAuthority);

Credits

Jordan Klassen

License

ISC

1.0.0

8 years ago