JSPM

asposestoragecloud

1.0.5
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 92
  • Score
    100M100P100Q65596F
  • License MIT

Aspose.Storage Cloud SDK for NodeJS

Package Exports

  • asposestoragecloud

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (asposestoragecloud) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Aspose.Storage Cloud SDK for NodeJS

This repository contains Aspose.Storage for Cloud Java NodeJS source code. This SDK allows you to work with Aspose.Storage for Cloud REST APIs in your NodeJS applications quickly and easily.

How to use the SDK?

The complete source code is available in this repository folder. For more details, please visit our documentation website.

Quick SDK Tutorial

var StorageApi =require("asposestoragecloud")

var AppSID = 'XXX';
var AppKey = 'XXX';

var config = {'appSid':AppSID,'apiKey':AppKey};

//Instantiate Aspose.Storage API SDK
var storageApi = new StorageApi(config);

//invoke Aspose.Storage Cloud SDK API to get Disc Usage
storageApi.GetDiscUsage('', function(responseMessage) {
    console.log('status:', responseMessage.status);
    console.log('body:', responseMessage.body);
    console.log('DiscUsage:', responseMessage.body.DiscUsage.UsedSize);	
});

##Contact Us Your feedback is very important to us. Please feel free to contact us using our Support Forums.