Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 361 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 361 Bytes

airtable-to-sqlite

Can be run as a CLI or via JavaScript import.

CLI Usage

$ node ./index.js

Module Usage

import airtableToSqlite from 'airtable-to-sqlite'

await airtableToSqlite({
  apiKey: "(your api key here)",
  baseId: "(your base id here)",
  selectedFieldIds: [
    "(field id)",
    "(field id)",
    "(field id)",
  ]
})