Skip to content

Commit a08cf78

Browse files
committed
2 parents cb0626a + 1dbbafc commit a08cf78

File tree

8 files changed

+116
-104
lines changed

8 files changed

+116
-104
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ node_modules
33
typings
44
dist
55
.swagger-codegen
6-
.swagger-codegen-ignore
6+
.swagger-codegen-ignore
7+
package-lock.json

README.md

Lines changed: 34 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,29 @@
1-
Node.js Cloud SDK wraps Aspose.Cells REST API so you could seamlessly integrate Excel® file generation, manipulation, conversion & processing features into your own Node.js applications.
1+
![](https://img.shields.io/badge/REST%20API-v3.0-lightgrey) ![npm](https://img.shields.io/npm/v/asposecellscloud) ![node-current](https://img.shields.io/node/v/asposecellscloud) [![GitHub license](https://img.shields.io/github/license/aspose-cells-cloud/aspose-cells-cloud-node)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-node/blob/master/LICENSE) ![GitHub commits since latest release (by date)](https://img.shields.io/github/commits-since/aspose-cells-cloud/aspose-cells-cloud-node/20.10)
22

33
# Process Excel® Files in the Cloud with Node.js
44

5-
[Aspose.Cells Cloud SDK for Node.js](https://products.aspose.cloud/cells/nodejs) allows developers to create, edit, process & convert Excel spreadsheets in the Cloud. The Excel Cloud SDK gets its functionality from Aspose.Cells Cloud API, allowing your Node.js apps to work with all Excel file formats and features including worksheet & cell management, conditional formatting, auto-filters, auto-shapes, charts, OleObjects, page breaks, ListObjects, Pivot Tables, charts and much more.
5+
[Aspose.Cells Cloud SDK for Node.js](https://products.aspose.cloud/cells/nodejs) allows developers to create, edit, process & convert Excel spreadsheets in the Cloud. The Node.js Excel Cloud SDK gets its functionality from Aspose.Cells Cloud API, allowing your Node.js apps to work with all Excel file formats and features including worksheet & cell management, conditional formatting, auto-filters, auto-shapes, charts, OleObjects, page breaks, ListObjects, Pivot Tables, charts and much more.
66

7-
## Excel File Processing Features
7+
## Excel File Manipulation Features
88

9-
- Create Excel files from scratch using the API.
10-
- Load, process & convert spreadsheets via Cloud SDK.
9+
- Create Excel files from scratch via API or [Smart Markers](https://docs.aspose.cloud/cells/create-excel-workbook-from-a-smartmarker-template/).
10+
- Load, process & [convert Excel files](https://docs.aspose.cloud/cells/convert-excel-workbook-to-different-file-formats/) via Cloud SDK.
1111
- Add, update or delete worksheet, charts, pictures, shapes, hyperlinks & validations.
1212
- Add or remove cells area for conditional formatting from Excel worksheets.
1313
- Insert or delete, horizontal or vertical page breaks.
1414
- Add ListObject or convert ListObjects to a range of cells.
15-
- Summarize data with Pivot Tables & charts.
15+
- Summarize data with [Pivot Tables](https://docs.aspose.cloud/cells/working-with-pivot-tables/) & Excel charts.
1616
- Apply custom criteria to list filters of various types.
1717
- Get, update, show or hide chart legend & titles.
1818
- Manipulate page setup, header & footer.
1919
- Create, update, fetch or delete document properties.
2020
- Fetch the required shape from worksheet.
21-
- Leverage the Power of Pivot Tables & ranges.
21+
- Leverage the power of named ranges.
2222

23-
## Features & Enhancements in Version 20.9
23+
## Enhancements in Version 20.10
2424

25-
- Aspose.Cells Cloud API calls are not working with explicit storage name but only default storage.
26-
- Get output file size without downloading during conversion.
27-
- Enhancement for CellsShapesPutWorksheetShape API.
25+
- Support to upload large file.
26+
- Enhancement for post sparkline group API.
2827

2928
## Read & Write Spreadsheet Formats
3029

@@ -33,34 +32,38 @@ Node.js Cloud SDK wraps Aspose.Cells REST API so you could seamlessly integrate
3332
**SpreadsheetML:** XML
3433
**Text:** CSV, TSV, TXT (TabDelimited)
3534
**Web:** HTML, MHTML
36-
**PDF**
3735

38-
## Save Spreadsheet As
36+
## Save Spreadsheets As
3937

40-
DIF, HTML, MHTML,PNG,JPG, TIFF, XPS, SVG, MD (Markdown), ODS ,xlsx,xls,xlsb, PDF,XML,TXT,CSV
38+
**Microsoft Excel:** XLS, XLSX, XLSB
39+
**OpenOffice:** ODS
40+
**SpreadsheetML:** XML
41+
**Text:** CSV, TSV, TXT (TabDelimited)
42+
**Web:** HTML, MHTML
43+
**Fixed Layout:** PDF, XPS
44+
**Images:** PNG, JPG, TIFF, SVG
45+
**Markdown:** MD
46+
**Other:** DIF
4147

42-
## Read File Formats
48+
## Read Other Formats
4349

4450
SXC, FODS
4551

46-
## Storage API Support
47-
48-
Since version 19.9, SDK includes support of storage operations for better user experience and unification, so now there's no need to use 2 different SDKs!
52+
## Integrated Storage API
4953

50-
It gives you an ability to:
54+
Since version 19.9, SDK includes support of storage operations for better user experience and unification. It gives you an ability to;
5155

5256
- Upload, download, copy, move and delete files, including versions handling (if you are using Cloud storage that supports this feature - true by default).
5357
- Create, copy, move and delete folders.
5458
- Copy and move files and folders across separate storages in scope of a single operation.
5559
- Check if certain file, folder or storage exists.
5660

57-
## Getting Started with Aspose.Cells Cloud SDK for Node.js
61+
## Get Started with Aspose.Cells Cloud SDK for Node.js
5862

59-
Firstly, create an account at [Aspose for Cloud](https://dashboard.aspose.cloud/#/apps) to get your application information and free quota to use the API. Now execute `npm install asposecellscloud --save` from the command line to install Aspose.Cells Cloud SDK for Node.js via NPM.
60-
61-
The complete source code is available at [GitHub Repository](https://github.com/aspose-cells-cloud/aspose-cells-cloud-node).
63+
First, create an account at [Aspose for Cloud](https://dashboard.aspose.cloud/#/apps) to get your application information. Next, execute `npm install asposecellscloud --save` from the command line to install Aspose.Cells Cloud SDK for Node.js via NPM.
6264

6365
## Convert Excel to PDF via Node.js
66+
6467
```js
6568
var fs = require('fs');
6669
var path = require('path');
@@ -114,7 +117,7 @@ return cellsApi.cellsPostHideWorksheetColumns(req)
114117
});
115118
```
116119

117-
## Merge Worksheets in the Cloud via Node.js
120+
## Merge Worksheets in the Cloud
118121

119122
```js
120123
const { CellsApi, Cells_PostWorksheetMergeRequest } = require("asposecellscloud");
@@ -139,4 +142,11 @@ return cellsApi.cellsPostWorksheetMerge(req)
139142
});
140143
```
141144

145+
## Aspose.Cells Cloud SDKs in Popular Languages
146+
147+
| .NET | Java | PHP | Python | Ruby | Android | Swift | Perl | GO |
148+
|---|---|---|---|---|---|---|---|---|
149+
| [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-dotnet) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-java) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-php) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-python) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-ruby) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-android) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-swift) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-perl) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-go) |
150+
| [NuGet](https://www.nuget.org/packages/Aspose.Cells-Cloud/) | [Maven](https://repository.aspose.cloud/webapp/#/artifacts/browse/tree/General/repo/com/aspose/aspose-cells-cloud) | [Composer](https://packagist.org/packages/aspose/cells-sdk-php) | [PIP](https://pypi.org/project/asposecellscloud/) | [GEM](https://rubygems.org/gems/aspose_cells_cloud) | [Maven](https://repository.aspose.cloud/webapp/#/artifacts/browse/tree/General/repo/com/aspose/aspose-cells-cloud-android) | [POD](https://cocoapods.org/pods/AsposeCellsCloud) | [CPAN](https://metacpan.org/release/AsposeCellsCloud-CellsApi) | [GO](https://pkg.go.dev/github.com/aspose-cells-cloud/aspose-cells-cloud-go/v20?tab=overview) |
151+
142152
[Product Page](https://products.aspose.cloud/cells/nodejs) | [Documentation](https://docs.aspose.cloud/cells/) | [Live Demo](https://products.aspose.app/cells/family) | [API Reference](https://apireference.aspose.cloud/cells/) | [Code Samples](https://github.com/aspose-cells-cloud/aspose-cells-cloud-node) | [Blog](https://blog.aspose.cloud/category/cells/) | [Free Support](https://forum.aspose.cloud/c/cells) | [Free Trial](https://dashboard.aspose.cloud/#/apps)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "asposecellscloud",
3-
"version": "20.9.0",
3+
"version": "20.10.0",
44
"description": "Aspose.Cells Cloud SDK for Node.js",
55
"keywords": [
66
"Aspose",

0 commit comments

Comments
 (0)