2023-07-26 20:18:07 +00:00
|
|
|
---
|
2024-04-12 07:11: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
|
2024-04-12 07:11:07 +00:00
|
|
|
"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
|
|
|
|
|
|
|
|
["Loading Sheets"](/docs/getting-started/examples/loader) explores deep SheetJS
|
|
|
|
integrations. Based on the existing CSV and binary loaders, a spreadsheet loader
|
|
|
|
for LangChain is developed and tested.
|