npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

airtable-typegen

v0.3.0

Published

Generate TypeScript & Zod types from your Airtable bases

Downloads

74

Readme

airtable-typegen

Generate TypeScript types & Zod schemas from your Airtable bases.

Version CI Downloads/week License

:warning: This tool is in ALPHA. It has not be thoroughly tested with Airtable bases in the wild. Please use carefully and sanity check the generated code before using in production! Contributions & bug reports are appreciated :)

Quickstart

$ npm install --save-dev airtable-typegen
# or
$ yarn add -D airtable-typegen

Then generate types via:

$ airtable-typegen <BASE_ID> -o ./types/airtable.d.ts

Or generate Zod schemas with the -z flag!

$ airtable-typegen <BASE_ID> -z -o ./src/schemas/airtable.ts

Setup

The script relies on the Airtable Meta API, which requires an Access Token. This is different than an Airtable API key. The simplest way to get one is by creating a personal access token:

  1. Navigate to https://airtable.com/create/tokens
  2. Click “Create token”
  3. Enter a name (e.g. “airtable-typegen”)
  4. Give it a scope of schema.bases:read
  5. Give permission to your relevant bases/workspaces
  6. Copy the created token & store it in your .env as AIRTABLE_TYPEGEN_ACCESS_TOKEN

Usage

The command takes a list of Airtable base IDs (those of the form appXYZ...) and some flags. It will output a file in your current working directory depending on the flags you supply it:

USAGE
  $ airtable-typegen [BASEID] [-v] [-z] [-t <value>]

ARGUMENTS
  BASEID  The Airtable Base ID (looks like appABC123XYZ). Can specify multiple.

FLAGS
  -o, --output=<value>  The file (relative to CWD) to write generated code to (defaults to "base-name.ts")
  -t, --tables=<value>  A comma-separated list of tables (names or ids) to generate from (defaults to all tables)
  -v, --version         Show CLI version.
  -z, --zod             Generate Zod schemas instead of TypeScript definitions

DESCRIPTION
  Generate TypeScript types and/or Zod schemas from an Airtable Base.
  Will read your Airtable API key from the AIRTABLE_TYPEGEN_ACCESS_TOKEN environment variable.
  Reads environment from .env file if present in current working directory.

EXAMPLES
  $ airtable-typegen appABC123
  > Outputs TypeScript definitions to ./base-name.ts

  $ airtable-typegen appABC123 -t MyTable,tblUOInmv7kanMKjr
  > Outputs TypeScript definitions to ./base-name.ts for the specified tables

  $ airtable-typegen appABC123 -z -o ./src/schemas/airtable.ts
  > Outputs Zod schemas to ./src/schemas/airtable.ts

For example, you could do this in your package.json:

{
  "scripts": {
    "generate:airtable": "airtable-typegen <BASE_ID> -z -o src/schemas/airtable.ts",
  }
}

then run it everytime you want to sync the types:

$ npm run generate:airtable

Alternatively, you could combine it into your dev and build commands (withs omething like npm-run-all, perhaps):

{
  "scripts": {
    "build": "run-s generate:airtable 'remix build'",
    "dev": "run-s generate:airtable 'remix dev'",
    "generate:airtable": "airtable-typegen <BASE_ID> -z -o src/schemas/airtable.ts",
  }
}

TODO

  • [ ] Show how types & Zod schemas can be used (currently need to parse each row individually)
  • [ ] Add a thin runtime wrapper around Airtable SDK to parse FieldSets with proper types
  • [ ] Improve example/

I probably won't work on this much until I absolutely need it. Sorry. Welcome any and all contributions!