New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@asposecloud/aspose-tasks-cloud

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@asposecloud/aspose-tasks-cloud

Aspose.Tasks Cloud SDK for Node.js

  • 20.11.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
22
decreased by-75%
Maintainers
1
Weekly downloads
 
Created
Source

npm (scoped) npm bundle size node-current GitHub license GitHub last commit

Node.js SDK to Manage Tasks in the Cloud

Aspose.Tasks for Cloud offers the ability to manipulate and convert Microsoft Project MPT, MPP, MPX & Oracle Primavera XER, XML, and PrimaveraP6XML files in the Cloud. Aspose.Tasks Cloud SDK for Node.js wraps the REST API to make it easier for the developers to integrate Task Management features in their own cloud-based Node.js applications.

REST API for Task Management

Read & Write Project Data

Microsoft Project MPP, XML, MPT Primavera MPX

Save Project Data As

XER, XLSX, HTML, XML, TXT, TIF, SVG, PNG, JPEG

Get Started with Aspose.Tasks Cloud SDK for Node.js

Register an account at Aspose Cloud Dashboard to get you application information. Next, execute npm i @asposecloud/aspose-tasks-cloud from the command line to install Aspose.Tasks Cloud SDK for Node.js via NPM.

Create MPP in the Cloud

const tasksApi = new TasksApi("AppSid", "AppKey");
const request: GetTasksRequest = { name: "template.mpp", folder: "documents", storage: ""}

tasksApi.getTasks(request)
    .then((result) => {
        // Deal with a result
        console.log(result.response.statusCode);
        console.log(result.body);
    })
    .catch(function(err) {
        // Deal with an error
        console.log(err.reponse.statusCode);
        console.log(err.body);
    });

Tests contain various examples of using the SDK. You have to create "testConfig.json" file in project root to run every example. The "testConfig.json" has the following structure.

{
    "AppSid": "Youre AppSid here",
    "AppKey": "Youre AppKey here",
    "BaseUrl": "http://api.aspose.cloud"
}
.NETPHPPythonNode.js
GitHubGitHubGitHubGitHub
NuGetComposerPIPNPM

Home | Product Page | Documentation | Live Demo | API Reference | Code Samples | Blog | Free Support | Free Trial

Keywords

FAQs

Package last updated on 04 Nov 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc