docs.sheetjs.com/docz/docs/03-demos/27-local/index.md
2024-05-10 01:37:20 -04:00

1.6 KiB

title pagination_prev pagination_next
Local Data demos/data/index demos/cloud/index

import DocCardList from '@theme/DocCardList'; import {useCurrentSidebarCategory} from '@docusaurus/theme-common';

SheetJS is a JavaScript library for reading and writing data from spreadsheets.

There is no standard cross-platform approach to read and write files and data. The readFile1 and writeFile2 methods rely on platform-specific APIs to perform the file read and write operations.

Many platforms do not support the techniques used by readFile and writeFile but offer other methods. Typically those methods process Uint8Array objects or binary strings and play nice with the read3 and write4 methods.

Demos in this section cover common local APIs:

    {useCurrentSidebarCategory().items.map((item, index) => { const listyle = (item.customProps?.icon) ? { listStyleImage: `url("${item.customProps.icon}")` } : {}; return (
  • {item.label}{item.customProps?.summary && (" - " + item.customProps.summary)}
  • ); })}

The desktop and mobile demos cover APIs for iOS, Android, Windows, macOS and Linux applications.