What is @azure/ms-rest-nodeauth?
@azure/ms-rest-nodeauth is an npm package that provides various authentication mechanisms for Azure services in Node.js applications. It supports different types of credentials such as service principal, managed identity, and interactive login, making it easier to authenticate and interact with Azure resources.
What are @azure/ms-rest-nodeauth's main functionalities?
Service Principal Authentication
This feature allows you to authenticate using a service principal, which is a non-interactive way to authenticate with Azure. You need to provide the client ID, secret, and tenant ID (domain) of the service principal.
const msRestNodeAuth = require('@azure/ms-rest-nodeauth');
msRestNodeAuth.loginWithServicePrincipalSecret(clientId, secret, domain).then((credentials) => {
// Use the credentials to interact with Azure services
console.log('Authenticated with service principal');
}).catch((err) => {
console.error('Error authenticating with service principal:', err);
});
Managed Identity Authentication
This feature allows you to authenticate using a managed identity, which is useful for applications running on Azure services like Azure VMs or Azure App Service. It eliminates the need to manage credentials.
const msRestNodeAuth = require('@azure/ms-rest-nodeauth');
msRestNodeAuth.loginWithManagedIdentity().then((credentials) => {
// Use the credentials to interact with Azure services
console.log('Authenticated with managed identity');
}).catch((err) => {
console.error('Error authenticating with managed identity:', err);
});
Interactive Login
This feature allows you to authenticate interactively, which is useful for development and testing purposes. It opens a browser window for the user to log in and grant access.
const msRestNodeAuth = require('@azure/ms-rest-nodeauth');
msRestNodeAuth.interactiveLogin().then((credentials) => {
// Use the credentials to interact with Azure services
console.log('Authenticated with interactive login');
}).catch((err) => {
console.error('Error authenticating with interactive login:', err);
});
Other packages similar to @azure/ms-rest-nodeauth
@azure/identity
@azure/identity is another package that provides Azure Active Directory token authentication support across the Azure SDK. It offers a more modern and unified approach to authentication compared to @azure/ms-rest-nodeauth, supporting a wider range of authentication scenarios and integrating seamlessly with other Azure SDK libraries.
adal-node
adal-node is the Active Directory Authentication Library for Node.js. It provides easy-to-use authentication mechanisms for Azure Active Directory. While it is older and less feature-rich compared to @azure/ms-rest-nodeauth, it is still widely used for basic authentication scenarios.
msal-node
msal-node is the Microsoft Authentication Library for Node.js. It is designed to work with the Microsoft identity platform (formerly Azure AD v2.0). It offers more advanced features and better support for modern authentication flows compared to @azure/ms-rest-nodeauth.
This library provides different node.js based authentication mechanisms for services in Azure. It also contains rich type definitions thereby providing good typescrit experience.
All the authentication methods support callback as well as promise. IF they are called within an async method in your application then you can use the async/await pattern as well.
Example
username/password based login
import * as msRestNodeAuth from "ms-rest-nodeauth";
const username = process.env["AZURE_USERNAME"];
const password = process.env["AZURE_PASSWORD"];
msRestNodeAuth.loginWithUsernamePasswordWithAuthResponse(username, password).then((authres) => {
console.dir(authres, { depth: null })
}).catch((err) => {
console.log(err);
});
service-principal/secret based login
import * as msRestNodeAuth from "ms-rest-nodeauth";
const clientId = process.env["CLIENT_ID"];
const secret = process.env["APPLICATION_SECRET"];
const tenantId = process.env["DOMAIN"];
msRestNodeAuth.loginWithServicePrincipalSecretWithAuthResponse(clientId, secret, tenantId).then((authres) => {
console.dir(authres, { depth: null })
}).catch((err) => {
console.log(err);
});
interactive/device-code flow login
import * as msRestNodeAuth from "ms-rest-nodeauth";
msRestNodeAuth.interactiveLoginWithAuthResponse().then((authres) => {
console.dir(authres, { depth: null })
}).catch((err) => {
console.log(err);
});
service-principal authentication from auth file on disk
import * as msRestNodeAuth from "../lib/msRestNodeAuth";
const options: msRestNodeAuth.LoginWithAuthFileOptions = {
filePath: "<file path to auth file>",
}
msRestNodeAuth.loginWithAuthFileWithAuthResponse(options).then((authRes) => {
console.log(authRes);
console.log(process.env["AZURE_SUBSCRIPTION_ID"]);
}).catch((err) => {
console.log(err);
});
MSI (Managed Service Identity) based login from a virtual machine created in Azure.
import * as msRestNodeAuth from "../lib/msRestNodeAuth";
const options: msRestNodeAuth.MSIVmOptions = {
port: 50342;
}
msRestNodeAuth.loginWithVmMSI(options).then((msiTokenRes) => {
console.log(msiTokenRes);
}).catch((err) => {
console.log(err);
});
MSI (Managed Service Identity) based login from an AppService or Azure Function created in Azure.
import * as msRestNodeAuth from "../lib/msRestNodeAuth";
const options: msRestNodeAuth.MSIAppServiceOptions = {
msiEndpoint: "http://127.0.0.1:41741/MSI/token/";
}
msRestNodeAuth.loginWithAppServiceMSI(options).then((msiTokenRes) => {
console.log(msiTokenRes);
}).catch((err) => {
console.log(err);
});
Contributing
This project welcomes contributions and suggestions. Most contributions require you to agree to a
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
the rights to use your contribution. For details, visit https://cla.microsoft.com.
When you submit a pull request, a CLA-bot will automatically determine whether you need to provide
a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions
provided by the bot. You will only need to do this once across all repos using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct.
For more information see the Code of Conduct FAQ or
contact opencode@microsoft.com with any additional questions or comments.