Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 759 Bytes

README.md

File metadata and controls

39 lines (28 loc) · 759 Bytes

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 azureauth

Use the azureauth CLI by calling it from NPM scripts.

"scripts": {
  "authcli": "azureauth --version"
}
> npm run authcli

Use it as a node module by importing azureauth.

import { adoPat } from "azureauth";

const pat = await adoPat({
  displayName: "test",
  organization: "test",
  promptHint: "test",
  scope: ["test"],
});