ciqs
v1.1.4
Published
``` npm install --save node-ciqs ```
Downloads
16
Readme
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();