1.0.2 • Published 6 years ago

node-ciqs v1.0.2

Weekly downloads
1
License
MIT
Repository
-
Last release
6 years ago

Install

npm install --save node-ciqs

Usage

import { CiqsManagementClient } from 'node-ciqs';

async function run() {
  try {
    const credentials = // see ms-rest-azure
    const client = new CiqsManagementClient(credentials, '{your-azure-subscription-id}');
    const deployments = await client.deployments.list();
    console.log(test);
  } catch (err) {
    console.error(err);
  }
}

run();