docs.sheetjs.com/docz/docs/03-demos/32-extensions/index.md

993 B

title pagination_prev pagination_next
Extensions demos/cloud/index demos/bigdata/index

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

Thanks to the broad availability of powerful engines, JavaScript is a popular language for writing extensions for apps. Some applications like Chromium use V8 while others use engines that only support ES3 JavaScript. With conservative use of modern language features, SheetJS can be used in many app extensions.

Demos for common applications are included in separate pages:

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