docs.sheetjs.com/docz/docs/02-getting-started/index.md

43 lines
1.4 KiB
Markdown
Raw Permalink Normal View History

2022-08-13 22:01:26 +00:00
---
title: Getting Started
2022-08-13 22:01:26 +00:00
hide_table_of_contents: true
2023-05-27 23:07:45 +00:00
pagination_next: getting-started/installation/index
2022-08-13 22:01:26 +00:00
---
2023-05-27 23:07:45 +00:00
import DocCardList from '@theme/DocCardList';
import {useCurrentSidebarCategory} from '@docusaurus/theme-common';
2023-07-26 20:18:07 +00:00
["Export Tutorial"](/docs/getting-started/examples/export) is a live example
that covers general data munging and data export to spreadsheets.
["Import Tutorial"](/docs/getting-started/examples/import) is a live example
that covers data import from spreadsheets and data processing.
2022-08-13 22:01:26 +00:00
2023-05-27 23:07:45 +00:00
["Demos"](/docs/demos) include discussions and tested examples for common
deployments and use cases.
2022-08-13 22:01:26 +00:00
2023-05-27 23:07:45 +00:00
## Installation
2022-08-13 22:01:26 +00:00
https://cdn.sheetjs.com is the primary software distribution site. Please read
the installation instructions for your use case:
2022-08-13 22:01:26 +00:00
<ul>{useCurrentSidebarCategory().items.map((item, index) => {
if(item.label != "Installation") return "";
return item.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-04-27 09:12:19 +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!
:::