https://github.com/pindlebot/airtable-react
How to use Airtable as a minimum viable database for your ReactJs project.
https://github.com/pindlebot/airtable-react
Last synced: 12 months ago
JSON representation
How to use Airtable as a minimum viable database for your ReactJs project.
- Host: GitHub
- URL: https://github.com/pindlebot/airtable-react
- Owner: pindlebot
- Created: 2017-01-21T18:24:43.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-03-02T02:39:40.000Z (over 7 years ago)
- Last Synced: 2025-06-03T01:56:04.509Z (about 1 year ago)
- Language: CSS
- Size: 218 KB
- Stars: 65
- Watchers: 5
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# airtable-react
How to use Airtable as a minimum viable database for your ReactJs project.
## Quick Start
### Clone the repo and install dependencies
```bash
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](https://airtable.com/api)
```bash
BASE=
TABLE=
API_KEY=
```
You can also run the following from the command line:
```bash
export BASE=YOUR_AIRTABLE_BASE
export TABLE=YOUR_AIRTABLE_TABLE
export API_KEY=YOUR_AIRTABLE_APIKEY
```
### Start the server
```bash
yarn run start
```
### Further Reading
[Airtable As A Minimum Viable Database For Your ReactJs Project](https://menubar.io/airtable-reactjs)