azureauth
v0.13.0
Published
node-azure auth wrapps the AzureAuth CLI wrapper for performing AAD Authentication
Readme
node-azureauth
This package wraps the https://github.com/AzureAD/microsoft-authentication-cli with a node.js exec wrapper.
That way the azureauth CLI can be downloaded automatically, and therefore scoped to the ./node_modules/.bin allowing for multiple versions of the AzureAuth CLI
to exist on one machine at once.
Usage
Install the package wiwth
> npm i azureauthUse the azureauth CLI by calling it from NPM scripts.
"scripts": {
"authcli": "azureauth --version"
}> npm run authcliUse it as a node module by importing azureauth.
import { adoPat } from "azureauth";
const pat = await adoPat({
displayName: "test",
organization: "test",
promptHint: "test",
scope: ["test"],
});