Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
asposeslidescloud
Advanced tools
This repository contains Aspose.Slides Cloud SDK for NodeJS source code. This SDK allows you to work with Aspose.Slides Cloud REST APIs in your NodeJS applications.
All Aspose.Slides Cloud SDKs are licensed under MIT License.
The complete source code is available in this repository folder. You can either directly use it in your project via source code or get NPM package (recommended).
To use Aspose Slides Cloud NodeJS SDK you need to register an account with Aspose Cloud and lookup/create App Key and SID at Cloud Dashboard. There is free quota available. For more details, see Aspose Cloud Pricing.
From the command line:
npm install asposeslidescloud --save
The example code below converts a PowerPoint document to PDF format using asposeslidescloud library:
const api = require("asposeslidescloud");
const fs = require('fs');
const slidesApi = new api.SlidesApi("MyAppSid", "MyAppKey");
const postSlidesConvertRequest = new api.GetSlidesApiInfoRequest();
postSlidesConvertRequest.format = 'pdf';
postSlidesConvertRequest.document = fs.createReadStream("MyPresentation.pptx");
slidesApi.postSlidesConvert(postSlidesConvertRequest).then((response) => {
fs.writeFile("MyPresentation.pdf", response.body, (err) => {
if (err) throw err;
});
});
You can check more Examples of using the SDK.
Your feedback is very important to us. Please feel free to contact us using our Support Forums.
Website
Product Home
API Reference
Documentation
Blog
We generate our SDKs in different languages so you may check if yours is available in our list.
If you don't find your language in the list, feel free to request it from us, or use raw REST API requests as you can find it here.
FAQs
Aspose.Slides Cloud SDK for Node.js
The npm package asposeslidescloud receives a total of 151 weekly downloads. As such, asposeslidescloud popularity was classified as not popular.
We found that asposeslidescloud demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
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.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.