Flairtable Docs

Installation

The Flairtable SDK can be found on GitHub here.

Installing

npm install flairtable
# or yarn
yarn add flairtable

Hotswapping with Airtable

It implements the same methods as the Airtable SDK. This means you can hotswap Airtable with Flairtable. Airtable code:

1var base = new Airtable({apiKey: 'AIRTABLE_API_KEY'}).base('apptvMhO0o7aFEB7m');
2
3base('Table 1').select();

Flairtable code:

1var base = Flairtable({apiKey: 'FLAIRTABLE_API_KEY'}).base('apptvMhO0o7aFEB7m');
2
3base('Table 1').select();