@cj-tech-master/excelts 3.0.1-canary.20251229011802.ccfcbcc → 3.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -23,9 +23,8 @@ ExcelTS is a modernized fork of [ExcelJS](https://github.com/exceljs/exceljs) wi
|
|
|
23
23
|
|
|
24
24
|
## Installation
|
|
25
25
|
|
|
26
|
-
|
|
26
|
+
````bash
|
|
27
27
|
npm install @cj-tech-master/excelts
|
|
28
|
-
```
|
|
29
28
|
|
|
30
29
|
## Quick Start
|
|
31
30
|
|
|
@@ -44,7 +43,7 @@ sheet.addRow(["Jane Smith", 25, "jane@example.com"]);
|
|
|
44
43
|
|
|
45
44
|
// Save to file
|
|
46
45
|
await workbook.xlsx.writeFile("output.xlsx");
|
|
47
|
-
|
|
46
|
+
````
|
|
48
47
|
|
|
49
48
|
### Reading a Workbook
|
|
50
49
|
|
package/package.json
CHANGED