npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

asposecellscloud

v24.10.0

Published

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.

Downloads

393

Readme

npm node-current GitHub license GitHub commits since latest release (by date)

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.

Node.js package for Aspose.Cells Cloud

This repository contains Aspose.Cells Cloud SDK for Node.js source code. This SDK enables you to engage with various aspects of worksheets such as cell data, cell formatting, formulas, charts, pivot tables, data validation, comments, drawing objects, images, hyperlinks, as well as text and number formatting. Additionally, it offers functionalities for manipulating rows, columns, and protection settings. With Aspose.Cells Cloud SDK for Node.js, you can extend your applications to append and split worksheets, merge cells, and convert worksheets to a range of supported file formats, seamlessly integrating with the powerful Aspose.Cells Cloud REST APIs. We encourage you to dive into the Developer's Guide & API Reference for a comprehensive insight into everything Aspose.Cells Cloud API can offer. Enhance your Node.js applications today by leveraging the full suite of features aimed at making worksheet management as efficient as possible.

Manipulate Excel and other spreadsheet files in the Cloud

  • File Manipulation: Users can upload, download, delete, and manage Excel files stored in the cloud.
  • Formatting: Supports formatting of cells, fonts, colors, and alignment modes in Excel files to cater to users' specific requirements.
  • Data Processing: Powerful functions for data processing including reading, writing, modifying cell data, performing formula calculations, and formatting data.
  • Formula Calculation: Built-in formula engine handles complex formula calculations in Excel and returns accurate results.
  • Chart Manipulation: Users can create, edit, and delete charts from Excel files for data analysis and visualization needs.
  • Table Processing: Offers robust processing capabilities for various form operations such as creation, editing, formatting, and conversion, meeting diverse form processing needs.
  • Data Verification: Includes data verification function to set cell data type, range, uniqueness, ensuring data accuracy and integrity.
  • Batch Processing: Supports batch processing of multiple Excel documents, such as batch format conversion, data extraction, and style application..
  • Import/Export: Facilitates importing data from various sources into spreadsheets and exporting spreadsheet data to other formats.
  • Security Management: Offers a range of security features like data encryption, access control, and permission management to safeguard the security and integrity of spreadsheet data.

Feature & Enhancements in Version 24.10

Full list of issues covering all changes in this release:

  • Add the new feature about removing characters on TextProcessingController.

Support file format

|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.| |√| |PDF|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.||√|

Quick Start Guide

To get started with Aspose.Cells Cloud for Node.js, follow these steps:

  1. Create an account at Aspose for Cloud and obtain your application information.
  2. execute 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);
          });
      });
  });
});

Aspose.Cells Cloud in Popular Languages

| 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

Release history version

Enhancements in Version 24.9.0

  • Add word case function for TextProcessingController.
  • Support to export Worksheet to HTML with cell address or id.

Enhancements in Version 24.8.0

  • Add the text trim feature on Cells Cloud Services.

Enhancements in Version 24.7.0

  • Add a new feature about adding text content.
  • Add get access token by client id and client secret.

Enhancements in Version 24.6.0

  • Optimize the data conversion applied steps.
  • Optimize load data function of data transformation.

Enhancements in Version 24.5.0

  • Add merge queries method for loading data of data transformation.
  • Optimize chart data model.

Enhancements in Version 24.4.0

  • Support data transformation function for Aspose.Cells Cloud Services.

Enhancements in Version 24.3.1

  • Support data deduplication.
  • Support data filling.
  • Support to delete incomplete rows.
  • Support data cleansing.

Enhancements in Version 24.2.1

  • Add the analyze excel api for analyze controller.

Enhancements in Version 24.1.1

  • Fixed spelling mistakes for several functions.
  • Add the PostFitTallToPages method for page setup controller.
  • Add the PostFitWideToPages method for page setup controller.
  • Optimize save options about paginated.

Enhancements in Version 23.12

  • Conversion APIs add region parameter.
  • Protection APIs add region parameter.
  • Assemble data API adds region parameter.
  • Merge files API adds region parameter.
  • Split files API adds region parameter.
  • Import data API adds region parameter.
  • Watermark API adds region parameter.
  • Clear object API adds region parameter.
  • Reverse data API adds region parameter.
  • Rotate data API adds region parameter.

Enhancements in Version 23.11

  • Optimize import xml data into Excel file.
  • Optimize import json data into Excel file.
  • Remove deprecated functions, class and test case.

Enhancements in Version 23.10

  • Fix protect workbook request.
  • Fix range copy API.
  • Optimize workbook protect API.

Enhancements in Version 23.9

  • Support to data sorting on range controller.
  • Support to remove duplicate data on list object.
  • Support to insert slicer for list object.
  • Optimize list object and related objects.

Enhancements in Version 23.8

  • Support to lock API.
  • Optimize protect API.

Enhancements in Version 23.7

  • Support to repair API.
  • Remove GetExtractBarcodes API.

Enhancements in Version 23.6

  • Support to batch lock multi-files.
  • Support to batch unlock multi-files.
  • Support to protect lock multi-files.
  • Support to split lock multi-files.
  • Fix put document property api.

Enhancements in Version 23.5

  • Fix few method names for spelling error

Enhancements in Version 23.4

  • Adopt the new model(Conflicting expired function names are appended with _).
  • Add import xml data api.
  • Add export xml data api.

Enhancements in Version 22.12

  • Support chart axis operations.

Enhancements in Version 22.11

  • Add api for converting workbook to json.
  • Add api for converting workbook to sql.
  • Add api for converting workbook to csv.

Enhancements in Version 22.10

  • Add api for converting workbook to pptx.
  • Add api for converting workbook to html.
  • Add api for converting workbook to markdown.

Enhancements in Version 22.9

  • Add api for converting workbook to png.
  • Add api for converting workbook to pdf.
  • Add api for converting workbook to docx.

Enhancements in Version 22.8

  • Support transposing Excel Rows to Columns.

Enhancements in Version 22.7

  • Add 4 kinds of Save Option.
  • Add the checkExcelRestriction parameter for multiple APIs.

Enhancements in Version 22.6

  • Improve save as api.
  • Improve clear objects api.

Enhancements in Version 22.5

  • Add a new API for getting barcode description.

Enhancements in Version 22.4

  • Export API adds extended query parameters.
  • Convert API adds extended query parameters.
  • SaveAs API adds extended query parameters.
  • Get Workbook API adds extended query parameters.

Enhancements in Version 22.3

  • Add a new API about adding digital signature for cloud file.

Enhancements in Version 22.1

  • SaveAs API add the parameter of target storage name.
  • Workbok merged API add the parameter of merged file storage name.
  • Workbok split API add the parameter of target storage name
  • Workbok smart marker API add the parameter of output storage name.
  • Batch convert API add the parameters of intput and output storage name.
  • Remove AutoshapesController from Aspose.Cells Cloud.
  • Rename LiteCellsApi to LightCellsApi.

Enhancements in Version 21.12

  • Improvement for conversion API.
  • Improvement for batch data import to support to set cell formula.
  • Improvement for setting row height and column wight to support to set multi-rows and multi-columns.
  • Support to set cell formula in batch data import.
  • Add a new API for updating the list column.
  • Add a new API for reversing columns and rows.
  • Add new APIs for grouping and ungrouping shapes.

Enhancements in Version 21.11

  • Add new API for workbook get page count on Aspose.Cells Cloud.
  • Add new API for worksheet get page count on Aspose.Cells Cloud.
  • Add new API for compress excel file on Aspose.Cells Cloud.
  • Add new feature for replace API.

Enhancements in Version 21.10

  • Add new API for support delete multiple worksheets in a single call.
  • Add new API for supports batch convert excel files.

Enhancements in Version 21.9

  • Correct the return type of the following REST APIs.

Enhancements in Version 21.8

  • Improvement for getting list object Api.
  • Add import Api.

Enhancements in Version 21.7

  • Fix search API.
  • Fix split API.
  • Fix update metadata API.

Enhancements in Version 21.6

  • Improvement document properties.
  • Update the return value of put/post/delete.
  • Improvement export API.
  • Improve split API.
  • Improve merge API.
  • Improve unlock API.
  • Improve protected API.
  • Improve watermark API.

Enhancements in Version 21.5

  • Support autofit columns for workbook and worksheet.
  • Improve add and post row/column APIs.
  • Improve Task APIs.

Enhancements in Version 21.1

  • Support to convert worksheet on task API
  • Support to add and delete cell or range in worksheet.

Enhancements in Version 20.11

  • Support Aspose.Cells Cloud for Docker.

Enhancements in Version 20.10

  • Support to upload large file.

Enhancements in Version 20.9

  • Support sparkline groups.
  • Add API about updating pivot field.

Enhancements in Version 20.8

  • Aspose.Cells Cloud API calls are not working with explicit storage name but only default storage.
  • Get output file size without downloading during conversion.
  • Enhancement for CellsShapesPutWorksheetShape API.

Enhancements in Version 20.6

  • Support to add text water marker.

Enhancements in Version 20.4

  • Support to add background for workbook.
  • Support to delete background for workbook.