2.0.0 • Published 4 years ago

flairtable v2.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

The Flairtable JS library. Secure Airtable for your frontend.

Flairtable.js

This library mimics the workings described in the airtable docs. It adds typescript definitions though. I thought it really missed that. One major problem with Airtable is that you can't directly use it in the frontend. Flairtable fixes that. Get your auth key here and use Airtable as a regular data source, without worrying about security.

Docs

You can find detailed docs over here.

Pre-requisites

Installation

npm

npm install flairtable

Configuration

You can configure flairtable with all the stuff you're used to from Airtable:

{
    apiKey: string,
    endpointUrl?: string,
    apiVersion?: string,
    noRetryIfRateLimited?: boolean,
    requestTimeout?: number
}

The easiest setup would be:

const flairtable = Flairtable({apiKey: "test"});
const base = flairtable.base("BaseId");
// do whatever with your table here
base("tableId")

Support

Currently flairtable.js only supports two mode of operations:

  1. Getting a list of items.
  2. Getting one item.

This is mostly because that's the simplest requires no additional security rules.

2.0.0

4 years ago

1.0.4

4 years ago

1.0.2

4 years ago

1.0.3

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago

0.1.0

4 years ago

0.0.7

4 years ago

0.0.6

4 years ago

0.0.5

4 years ago

0.0.4

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago