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 🙏

© 2025 – Pkg Stats / Ryan Hefner

n8n-nodes-airtable-programmatic

v0.1.0

Published

Create, update, and delete Airtable schemas

Readme

n8n-nodes-airtable-programmatic

This n8n node is developed using the programmatic style. It allows you to manage your Airtable base schemas by creating and modifying bases, tables, and fields directly from your n8n workflows, which is especially useful for automating setup and infrastructure maintenance in Airtable.

n8n is a fair-code licensed workflow automation platform.

Features

  • Base Management: Create new Airtable bases and get their schema.
  • Table Management: Add new tables to your existing bases.
  • Field Management: Create fields of various types (text, select, currency, etc.) in your tables.
  • Deploy from JSON: Define and deploy a complete base structure, including tables and fields, using a single JSON object.
  • Easy integration with n8n workflows for schema automation.

Installation

To use this node, you need to install it manually in your n8n instance.

Manual Installation

  1. Navigate to your n8n custom nodes directory (usually ~/.n8n/custom/).
  2. Run the following command:
    npm install n8n-nodes-airtable-programmatic
  3. Restart your n8n instance.

If you are using Docker, you may need to add this installation step to your Dockerfile and rebuild the container for the changes to take effect.

Operations

Base

  • Create: Creates a new base. You can include initial tables upon creation.
  • Get Schema: Retrieves the full schema of an existing base, including its tables and fields.

Table

  • Create: Creates a new table within a specific base. You can add initial fields.

Field

  • Create: Creates a new field in a table. It supports a wide variety of field types like singleLineText, multipleSelect, currency, date, and more, with specific options for each type.

Schema

  • Deploy From JSON: Creates and configures a complete base, with its tables and fields, from a structure defined in JSON format.

Credentials

To use this node, you need to configure Airtable Enterprise API credentials:

  1. Go to the "Developer Hub" section in your Airtable account settings to generate an Access Token.
  2. Get the Workspace ID from your Airtable workspace URL.
  3. In n8n, create a new credential of type Airtable Enterprise API.
  4. Enter your Access Token and Workspace ID.

Usage

Here are some examples of how to use the Airtable Schema Manager node.

Create a New Base

  1. Add an Airtable Schema Manager node to your workflow.
  2. Configure the Airtable Enterprise API credentials.
  3. Select the Base resource and the Create operation.
  4. Enter a name for your new base.
  5. Optionally, you can add initial tables and fields.
  6. Execute the node.

Deploy a Base from a JSON Schema

This is one of the most powerful features. You can define the entire structure of a base in a JSON object and deploy it with a single operation.

  1. Add a Set node or similar to define your JSON schema.
  2. Add an Airtable Schema Manager node.
  3. Select the Schema resource and the Deploy From JSON operation.
  4. In the JSON Schema field, enter your JSON object. You can use an expression to get it from the previous node.
  5. Execute the workflow. The node will create the base, tables, and fields according to the definition.

Example JSON Schema:

{
	"baseName": "My New Contact Base",
	"workspaceId": "wspXXXXXXXXXXXXXX",
	"tables": [
		{
			"name": "Contacts",
			"description": "Customer contacts",
			"fields": [
				{
					"name": "Full Name",
					"type": "singleLineText",
					"description": "First and last name"
				},
				{
					"name": "Email",
					"type": "email"
				},
				{
					"name": "Status",
					"type": "singleSelect",
					"options": {
						"choices": [
							{ "name": "Active", "color": "greenLight2" },
							{ "name": "Inactive", "color": "redLight2" }
						]
					}
				}
			]
		}
	]
}

Resources

License

This project is licensed under the MIT License.