3.0.0 • Published 5 years ago

azure-servicefabric v3.0.0

Weekly downloads
6,721
License
MIT
Repository
github
Last release
5 years ago

uid: azure-servicefabric summary: *content


This SDK will be deprecated next year and will be replaced by a new TypeScript-based isomorphic SDK (found at https://github.com/Azure/azure-sdk-for-js) which works on Node.js and browsers.

Microsoft Azure SDK for Node.js - ServiceFabricClient

This project provides a Node.js package for accessing Azure. Right now it supports:

  • Node.js version 6.x.x or higher

Features

How to Install

npm install azure-servicefabric

How to use

Authentication, client creation, and getClusterManifest as an example.

const msRest = require("ms-rest");
const ServiceFabricClient = require("azure-servicefabric");
const token = "<access_token>";
const creds = new msRest.TokenCredentials(token);
const subscriptionId = "<Subscription_Id>";
const client = new ServiceFabricClient(creds, subscriptionId);
const timeout = 1;

client.getClusterManifest(timeout).then((result) => {
  console.log("The result is:");
  console.log(result);
}).catch((err) => {
  console.log('An error occurred:');
  console.dir(err, {depth: null, colors: true});
});

Related projects

3.0.0

5 years ago

2.2.0

5 years ago

2.1.0

5 years ago

2.0.0

6 years ago

2.0.0-preview

7 years ago

1.0.0-preview

7 years ago

0.1.5

7 years ago

0.1.4

8 years ago

0.1.3

8 years ago

0.1.2

8 years ago

0.1.0

8 years ago