Skip to content

Commit 5743321

Browse files
authored
Standardized readme.md
1 parent b85201b commit 5743321

File tree

1 file changed

+24
-26
lines changed

1 file changed

+24
-26
lines changed

README.md

Lines changed: 24 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,24 @@
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.9)
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.
22-
23-
## Features & Enhancements in Version 20.9
24-
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.
21+
- Leverage the power of named ranges.
2822

2923
## Read & Write Spreadsheet Formats
3024

@@ -33,34 +27,38 @@ Node.js Cloud SDK wraps Aspose.Cells REST API so you could seamlessly integrate
3327
**SpreadsheetML:** XML
3428
**Text:** CSV, TSV, TXT (TabDelimited)
3529
**Web:** HTML, MHTML
36-
**PDF**
3730

38-
## Save Spreadsheet As
31+
## Save Spreadsheets As
3932

40-
DIF, HTML, MHTML,PNG,JPG, TIFF, XPS, SVG, MD (Markdown), ODS ,xlsx,xls,xlsb, PDF,XML,TXT,CSV
33+
**Microsoft Excel:** XLS, XLSX, XLSB
34+
**OpenOffice:** ODS
35+
**SpreadsheetML:** XML
36+
**Text:** CSV, TSV, TXT (TabDelimited)
37+
**Web:** HTML, MHTML
38+
**Fixed Layout:** PDF, XPS
39+
**Images:** PNG, JPG, TIFF, SVG
40+
**Markdown:** MD
41+
**Other:** DIF
4142

42-
## Read File Formats
43+
## Read Other Formats
4344

4445
SXC, FODS
4546

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!
47+
## Integrated Storage API
4948

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

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

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

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).
58+
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.
6259

6360
## Convert Excel to PDF via Node.js
61+
6462
```js
6563
var fs = require('fs');
6664
var path = require('path');
@@ -114,7 +112,7 @@ return cellsApi.cellsPostHideWorksheetColumns(req)
114112
});
115113
```
116114

117-
## Merge Worksheets in the Cloud via Node.js
115+
## Merge Worksheets in the Cloud
118116

119117
```js
120118
const { CellsApi, Cells_PostWorksheetMergeRequest } = require("asposecellscloud");

0 commit comments

Comments
 (0)