2023-05-27 23:07:45 +00:00
|
|
|
---
|
|
|
|
pagination_prev: getting-started/index
|
2023-07-26 20:18:07 +00:00
|
|
|
pagination_next: getting-started/examples/index
|
2023-05-27 23:07:45 +00:00
|
|
|
hide_table_of_contents: true
|
|
|
|
title: Installation
|
2024-03-12 06:47:52 +00:00
|
|
|
---
|
2023-05-27 23:07:45 +00:00
|
|
|
|
|
|
|
import DocCardList from '@theme/DocCardList';
|
|
|
|
import {useCurrentSidebarCategory} from '@docusaurus/theme-common';
|
|
|
|
|
2024-04-08 04:47:04 +00:00
|
|
|
https://cdn.sheetjs.com is the primary software distribution site. Please
|
2023-05-27 23:07:45 +00:00
|
|
|
read the installation instructions for your use case:
|
|
|
|
|
|
|
|
<ul>{useCurrentSidebarCategory().items.map((item, index) => {
|
|
|
|
const listyle = (item.customProps?.icon) ? {
|
|
|
|
listStyleImage: `url("${item.customProps.icon}")`
|
|
|
|
} : {};
|
|
|
|
return (<li style={listyle} {...(item.customProps?.class ? {className: item.customProps.class}: {})}>
|
|
|
|
<a href={item.href}>{item.label}</a>{item.customProps?.summary && (" - " + item.customProps.summary)}
|
|
|
|
</li>);
|
|
|
|
})}</ul>
|
|
|
|
|
2023-06-25 09:36:58 +00:00
|
|
|
:::tip pass
|
2023-05-27 23:07:45 +00:00
|
|
|
|
|
|
|
[Watch the repo](https://git.sheetjs.com/SheetJS/sheetjs) or subscribe to the
|
|
|
|
[RSS feed](https://git.sheetjs.com/sheetjs/sheetjs/tags.rss) to be notified when
|
|
|
|
new versions are released!
|
|
|
|
|
|
|
|
:::
|