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

31 lines
1.1 KiB
Markdown
Raw Normal View History

2023-07-26 20:18:07 +00:00
---
title: Tutorials
2023-07-26 20:18:07 +00:00
pagination_prev: getting-started/installation/index
pagination_next: getting-started/roadmap
---
SheetJS presents a simple JS interface that works with "Array of Arrays" and
"Array of JS Objects". The API functions are building blocks that should be
2023-07-26 20:18:07 +00:00
combined with other JS APIs to solve problems.
These discussions focus on the problem solving mindset. API details are covered
in other parts of the documentation.
## Data Export
The ["Export Tutorial"](/docs/getting-started/examples/export) examines the data
export process. Raw data is fetched from an endpoint, processed and ultimately
exported to a XLSX spreadsheet.
## Data Import
The ["Import Tutorial"](/docs/getting-started/examples/import) examines the data
import process. A legacy file is downloaded and parsed. The underlying data is
ultimately displayed to the user in a HTML table.
2024-06-19 11:22:00 +00:00
## Loading Sheets
2024-06-20 07:30:34 +00:00
The ["Loader Tutorial"](/docs/getting-started/examples/loader) explores SheetJS
2024-06-19 11:22:00 +00:00
integrations. Based on the existing CSV and binary loaders, a spreadsheet loader
2024-06-20 07:30:34 +00:00
is developed and tested in a natural language query workflow.