Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
asposecellscloud
Advanced tools
Aspose.Cells Cloud for Node.js to create, repair, merge, parse and convert excel files. Convert excel to PDF, JSON, XML, TSV, HTML and so on.
Node.js Cloud SDK wraps Aspose.Cells REST API so you could seamlessly integrate Microsoft Excel® document generation, manipulation, conversion & inspection features into your own Node.js applications.
Aspose.Cells Cloud SDK for Node.js allows you to work with worksheet cell data, cell formatting, formulas, charts, pivot tables,data validation, comments, drawing objects, images, hyperlinks, text and number formatting, rows, columns , and protection settings. It also assists in appending worksheets, splitting worksheets, merging cells, and converting worksheets to other supported file formats.
Feel free to explore the Developer's Guide & API Reference to know all about Aspose.Cells Cloud API.
Full list of issues covering all changes in this release:
Format | Description | Load | Save |
---|---|---|---|
XLS | Excel 95/5.0 - 2003 Workbook. | √ | √ |
XLSX | Office Open XML SpreadsheetML Workbook or template file, with or without macros. | √ | √ |
XLSB | Excel Binary Workbook. | √ | √ |
XLSM | Excel Macro-Enabled Workbook. | √ | √ |
XLT | Excel 97 - Excel 2003 Template. | √ | √ |
XLTX | Excel Template. | √ | √ |
XLTM | Excel Macro-Enabled Template. | √ | √ |
XLAM | An Excel Macro-Enabled Add-In file that's used to add new functions to Excel. | √ | |
CSV | CSV (Comma Separated Value) file. | √ | √ |
TSV | TSV (Tab-separated values) file. | √ | √ |
TabDelimited | Tab-delimited text file, same with TSV file. | √ | √ |
TXT | Delimited plain text file. | √ | √ |
HTML | HTML format. | √ | √ |
MHTML | MHTML file. | √ | √ |
ODS | ODS (OpenDocument Spreadsheet). | √ | √ |
SpreadsheetML | Excel 2003 XML file. | √ | √ |
Numbers | The document is created by Apple's "Numbers" application which forms part of Apple's iWork office suite, a set of applications which run on the Mac OS X and iOS operating systems. | √ | |
JSON | JavaScript Object Notation | √ | √ |
DIF | Data Interchange Format. | √ | |
Adobe Portable Document Format. | √ | ||
XPS | XML Paper Specification Format. | √ | |
SVG | Scalable Vector Graphics Format. | √ | |
TIFF | Tagged Image File Format | √ | |
PNG | Portable Network Graphics Format | √ | |
BMP | Bitmap Image Format | √ | |
EMF | Enhanced metafile Format | √ | |
JPEG | JPEG is a type of image format that is saved using the method of lossy compression. | √ | |
GIF | Graphical Interchange Format | √ | |
MARKDOWN | Represents a markdown document. | √ | |
SXC | An XML based format used by OpenOffice and StarOffice | √ | √ |
FODS | This is an Open Document format stored as flat XML. | √ | √ |
DOCX | A well-known format for Microsoft Word documents that is a combination of XML and binary files. | √ | |
PPTX | The PPTX format is based on the Microsoft PowerPoint open XML presentation file format. | √ |
To get started with Aspose.Cells Cloud for Node.js, follow these steps:
npm install asposecellscloud --save
from the command line to install Aspose.Cells Cloud for Node.js via NPM.var fs = require('fs');
var path = require('path');
var assert = require('assert');
const localPath = "../TestData/";
describe('cellsWorkbookPutConvertWorkbook', function() {
it('should call cellsWorkbookPutConvertWorkbook successfully', function() {
const cellsApi =new api.CellsApi(clientId, clientSecret);
const filename = "Book1.xlsx";
var data =fs.createReadStream(localPath + filename);
var req = new model.UploadFileRequest();
req.path = "Temp/" + filename;
req.file = data;
return cellsApi.uploadFile(req)
.then(() => {
var req = new model.CellsWorkbook_PutConvertWorkbookRequest({
workbook : fs.createReadStream(localPath + filename),
format : "pdf",
});
return cellsApi.cellsWorkbookPutConvertWorkbook(req)
.then((result) => {
expect(result.body.toString().length).to.greaterThan(0);
});
});
});
});
Java | PHP | Python | Ruby | Node.js | Android | Swift | Perl | GO |
---|---|---|---|---|---|---|---|---|
GitHub | GitHub | GitHub | GitHub | GitHub | GitHub | GitHub | GitHub | GitHub |
Maven | Composer | PIP | GEM | NPM | Maven | POD | CPAN | GO |
Product Page | Documentation | Live Demo | API Reference | Code Samples | Blog | Free Support | Free Trial
FAQs
Aspose.Cells Cloud for Node.js to create, repair, merge, parse and convert excel files. Convert excel to PDF, JSON, XML, TSV, HTML and so on.
The npm package asposecellscloud receives a total of 15 weekly downloads. As such, asposecellscloud popularity was classified as not popular.
We found that asposecellscloud 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.