This package has been deprecated

Author message:

This package is deprecated in favor of @azure/batch whick works both on node.js and browsers

azure-batch
TypeScript icon, indicating that this package has built-in type declarations

9.0.0 • Public • Published

uid: azure-batch summary: *content


Microsoft Azure SDK for Node.js - Batch Service

This project provides a Node.js package that makes it easy to work with Microsoft Azure Batch Service. Right now it supports:

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

Please check details on API reference documents.

How to Install

npm install azure-batch

How to use

Authentication

var batch = require('azure-batch');
 
//user authentication
var credentials = new batch.SharedKeyCredentials('your-account-name', 'your-account-key');

Create the BatchServiceClient

 
var client = new batch.ServiceClient(credentials, 'your-batch-endpoint');

List all Jobs under account

let options = {}
options.jobListOptions = { maxResults : 10 };
 
function loop(nextLink) {
  if (nextLink !== null && nextLink !== undefined) {
    return client.job.listNext(nextLink).then((res) => {
      console.dir(res, {depth: null, colors: true});
      return loop(res.odatanextLink);
    });
  }
  return Promise.resolve();
};
 
 
client.job.list(options).then((result) => {
  console.dir(result, {depth: null, colors: true});
}).then((result) => {
  return loop(result.odatanextLink);
}).catch((err) => {
  console.log('An error occurred.');
  console.dir(err, {depth: null, colors: true});
});

Impressions

Readme

Keywords

Package Sidebar

Install

npm i azure-batch

Weekly Downloads

11,694

Version

9.0.0

License

MIT

Unpacked Size

5.72 MB

Total Files

255

Last publish

Collaborators

  • windowsazure