airtable-nextjs-blog
airtable-nextjs-blog copied to clipboard
A quick look at how to pull data from Airtable onto your site with Next.js and Express.
⚠️ NOTE
This repository and companion tutorial have been retired. No further updates will be made. See the note on the tutorial for more information.
Tutorial
This is the companion repository for the tutorial:
How to Create a Blog with the Airtable API & Next.js.
Setup
You’ll need an Airtable account with an API key. The sample code is matched to a table structured like so:

Install
- Clone this repository and run:
npm install
- Then create a
.envfile and add your Airtable API key and Base ID to it like so:
AIRTABLE_API_KEY=keyXXXXXX
AIRTABLE_BASE_ID=appXXXXXX
Run
- First start the Redis server with:
redis-server
- Then Start Next with:
npm run dev
Now go to http://localhost:3000 and you should see your Airtable data. If you run into trouble, have any questions, etc. feel free to file an issue.