Skip to content

Commit e8bb379

Browse files
authored
docs: improve readme documentation
1 parent 2a8ad76 commit e8bb379

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ This project was originally created by Stephen Liberty and `excel-builder-vanill
2424

2525
### Comparison to similar libraries
2626

27-
Excel-builder-vanilla is at the minimum 8x times smaller than the most popular libraries (we used `Bundlephobia` to compare), excel-builder-vanilla is 19.1Kb gzip while [XLSX](https://bundlephobia.com/package/xlsx) is 136Kb and [ExcelJS](https://bundlephobia.com/package/exceljs) is 251Kb gzip. The reason as to why it's much smaller is very simple and relates to these 2 major differences:
27+
Excel-builder-vanilla is at the minimum 7-13x times smaller than the most popular libraries (we used `Bundlephobia` to compare), excel-builder-vanilla is 19Kb gzip while [XLSX](https://bundlephobia.com/package/xlsx) is 136Kb and [ExcelJS](https://bundlephobia.com/package/exceljs) is 251Kb gzip. The reason as to why it's much smaller is very simple and relates to these 2 major differences:
2828
- excel-builder-vanilla is ESM-Only (tree shakable) and all other libraries are still just offering CJS (CommonJS) which increases their download/install size (not tree shakable)
2929
- excel-builder-vanilla is only offering Excel export (writer) but without any reading capabilities making the project very lightweight
3030

@@ -57,7 +57,7 @@ The project offers 2 different build types, choose the best one depending on you
5757
import { createWorksheet } from 'excel-builder-vanilla';
5858

5959
// IIFE - CDN
60-
<script src="https://cdn.jsdelivr.net/npm/excel-builder-vanilla@4.0.1/dist/excel-builder.iife.js"></script>
60+
<script src="https://cdn.jsdelivr.net/npm/excel-builder-vanilla@4.2.0/dist/excel-builder.iife.js"></script>
6161
<script>
6262
const worksheet = ExcelBuilder.createWorksheet(); // or window.ExcelBuilder.createWorksheet();
6363
</script>

0 commit comments

Comments
 (0)