Skip to content

applefreak/airtable2lowdb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

airtable2lowdb

Converts Airtable base to LowDB compatible object

Install

npm install --save airtable2lowdb

Usage

const exportToLowdb = require('airtable2lowdb')

exportToLowdb({
  name: 'Your table name',  // Not really needed
  atApiKey: 'YOUR_API_KEY', // Get this in your Airtable account page
  baseId: 'YOUR_BASE_ID',   // Get this in the API docs
  tables: [                 // List of table names you want to export
    'Table 1 name',
    'Table 2 name',
    'Table 3 name'
  ]
}).then(results => console.log(results))

This will output an object with table names as key and arrays of row objects in that table as value

License

MIT

About

Converts Airtable base to LowDB compatible objects

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published