airtable-react
How to use Airtable as a minimum viable database for your ReactJs project.
Quick Start
Clone the repo and install dependencies
git clone https://github.com/menubar/airtable-react.git
cd airtable-react && npm install
Add Airtable API key
Edit .env and add your Airtable base, table, view and API key. All of the aforementioned can be found here: https://airtable.com/api
BASE=
TABLE=
API_KEY=
You can also run the following from the command line:
export BASE=YOUR_AIRTABLE_BASE
export TABLE=YOUR_AIRTABLE_TABLE
export API_KEY=YOUR_AIRTABLE_APIKEY
Start the server
yarn run start
Further Reading
Airtable As A Minimum Viable Database For Your ReactJs Project