docs.sheetjs.com/docz/docs/03-demos/03-net/index.md
2023-02-28 06:40:44 -05:00

1.0 KiB

title pagination_prev pagination_next
Servers and Remote Data demos/grid/index demos/static/index

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

SheetJS libraries are commonly used in data pipelines for processing personally identifiable information (PII). The libraries never attempt to perform network requests and never collect telemetry.

In practice, there are many interesting networking use cases including server processing of user-submitted files and fetching files from an external source. The demos in this section cover common use cases:

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