https://github.com/verekia/airtable-export
https://github.com/verekia/airtable-export
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/verekia/airtable-export
- Owner: verekia
- License: mit
- Created: 2020-09-10T10:54:43.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-05-07T12:48:42.000Z (over 3 years ago)
- Last Synced: 2025-03-26T14:41:31.494Z (7 months ago)
- Language: JavaScript
- Size: 10.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Airtable Export
## Setup
Create a **.env** file containing:
```env
AIRTABLE_PERSONAL_KEY='keyYOUR_KEY'
AIRTABLE_BASE_ID='appYOUR_BASE_ID'
```Create a **airtable-export.config.json** file containing your table names and the export file destinations, with an optional view:
```json
{
"tables": [
["Your Table Name 1", "data/your-table-name-1.json", "View Name"],
["Your Table Name 2", "data/your-table-name-2.json"]
]
}
```Run:
```
npx airtable-export
```