
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
asposepdfcloud
Advanced tools
This repository contains Aspose.Pdf Cloud SDK for Node.js source code. This SDK allows you to work with Aspose.Pdf Cloud REST APIs in your Node.js applications quickly and easily.
The complete source code is available in this repository folder. For more details, please visit our documentation website.
var fs = require('fs');
var assert = require('assert');
var StorageApi =require("asposestoragecloud")
var PdfApi = require("asposepdfcloud");
var AppSID = 'XXX'; //sepcify App SID
var AppKey = 'XXX'; //sepcify App Key
var config = {'appSid':AppSID,'apiKey':AppKey};
var data_path = '../data/';
try {
//Instantiate Aspose.Storage API SDK
var storageApi = new StorageApi(config);
//Instantiate Aspose.Pdf API SDK
var pdfApi = new PdfApi(config);
//set input file name
var filename = "Sample";
var name = filename + ".pdf";
var format = "DOC";
//upload file to aspose cloud storage
storageApi.PutCreate(name, null, null, file= data_path + name , function(responseMessage) {
assert.equal(responseMessage.status, 'OK');
//invoke Aspose.Pdf Cloud SDK API to get pdf documemt in required format
pdfApi.GetDocumentWithFormat(name, format, null, null, null, function(responseMessage) {
assert.equal(responseMessage.status, 'OK');
//download output document from response
var outfilename = filename + '.' + format;
var writeStream = fs.createWriteStream('c:/temp/' + outfilename);
writeStream.write(responseMessage.body);
});
});
}catch (e) {
console.log("exception in example");
console.log(e);
}
##Contact Us Your feedback is very important to us. Please feel free to contact us using our Support Forums.
FAQs
Aspose.PDF Cloud is a REST API for creating and editing PDF files. Most popular features proposed by Aspose.PDF Cloud: PDF to Word, Convert PDF to Image, Merge PDF, Split PDF, Add Images to PDF, Rotate PDF. It can also be used to convert PDF files to diff
The npm package asposepdfcloud receives a total of 4,495 weekly downloads. As such, asposepdfcloud popularity was classified as popular.
We found that asposepdfcloud 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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.