# azure-arm-servermanagement

> Microsoft Server Management Client Library for node

Latest version **1.1.0** (published 2017-09-28) · MIT license · 0 weekly downloads

## Install

```sh
npm install azure-arm-servermanagement
pnpm add azure-arm-servermanagement
yarn add azure-arm-servermanagement
bun add azure-arm-servermanagement
```

## Health

**Score 20/100 (F)** — status: abandoned.

Positive: has types; no vulnerabilities.

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.0 |
| Published | 2017-09-28 |
| First published | 2016-05-11 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1174 |
| Author | Microsoft Corporation |
| Maintainers | windowsazure |
| Keywords | node, azure |

## Links

- npm: https://www.npmjs.com/package/azure-arm-servermanagement
- Repository: https://github.com/Azure/azure-sdk-for-node
- Homepage: http://github.com/Azure/azure-sdk-for-node
- Issues: http://github.com/Azure/azure-sdk-for-node/issues
- npm.io page: https://npm.io/package/azure-arm-servermanagement

## Dependencies (2)

- [ms-rest](https://npm.io/package/ms-rest.md) ^2.2.2
- [ms-rest-azure](https://npm.io/package/ms-rest-azure.md) ^2.3.3

## Alternatives

- [@expo/fingerprint](https://npm.io/package/@expo/fingerprint.md) — 6.2M weekly downloads
- [@azure/monitor-opentelemetry-exporter](https://npm.io/package/@azure/monitor-opentelemetry-exporter.md) — 850.0K weekly downloads
- [@azure/monitor-opentelemetry](https://npm.io/package/@azure/monitor-opentelemetry.md) — 624.0K weekly downloads
- [@posthog/ai](https://npm.io/package/@posthog/ai.md) — 423.3K weekly downloads
- [fakefilter](https://npm.io/package/fakefilter.md) — 63.9K weekly downloads

## Recent versions

- 1.1.0 (latest) — 2017-09-28
- 1.0.0-preview — 2017-04-03
- 0.1.4 — 2016-09-02
- 0.1.3 — 2016-09-02
- 0.1.2 — 2016-05-20
- 0.1.1 — 2016-05-17
- 0.1.0 — 2016-05-11

## README

# Microsoft Azure SDK for Node.js - ServerManagement

This project provides a Node.js package that makes it easy to manage Azure ServerManagement Resources. Right now it supports:
- **Node.js version: 6.0.0 or higher**

## Features

 - TODO

## How to Install

```bash
npm install azure-arm-servermanagement
```

## How to Use

### Authentication, client creation and listing nodes in a resource group as an example

 ```javascript
 var msRestAzure = require('ms-rest-azure');
 var ServerManagement = require('azure-arm-servermanagement');
 
 // Interactive Login
 msRestAzure.interactiveLogin(function(err, credentials) {
  var client = new ServerManagement(credentials, 'your-subscription-id');
  client.node.list(resourceGroupName, function(err, nodes, request, response) {
    if (err) console.log(err);
    nodes.map(function (node, index, array) {
      console.log('found node :' + node.name);
    }));
  });
 });
 ```

## Related projects

- [Microsoft Azure SDK for Node.js - All-up](https://github.com/WindowsAzure/azure-sdk-for-node)

---
_Source: https://npm.io/package/azure-arm-servermanagement · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
