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-declarative

v0.1.0

Published

Create Airtable bases with declarative nodes

Downloads

8

Readme

n8n-nodes-airtable-declarative

This is an n8n node developed using the declarative style for creating Airtable bases. It provides a simple and straightforward way to create new Airtable bases with predefined structures using JSON templates. UPwork

n8n is a fair-code licensed workflow automation platform.

Features

  • Simple Base Creation: Create new Airtable bases with a single operation.
  • JSON-Based Structure: Define your base structure using a simple JSON format.
  • Predefined Templates: Comes with example templates for common base structures.
  • Enterprise API Support: Works with Airtable Enterprise API for automated base creation.

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-declarative
  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.

Usage

This node is designed to be as simple as possible, with just two main inputs:

  1. Base Name: The name for your new Airtable base.
  2. Base Structure: A JSON template defining your tables and fields.

Example Base Structure

{
	"tables": [
		{
			"name": "Apartments",
			"description": "A to-do list of places to visit",
			"fields": [
				{
					"name": "Name",
					"type": "singleLineText",
					"description": "Name of the apartment"
				},
				{
					"name": "Address",
					"type": "singleLineText"
				},
				{
					"name": "Visited",
					"type": "checkbox",
					"options": {
						"color": "greenBright",
						"icon": "check"
					}
				}
			]
		}
	]
}

Supported Field Types

The node supports all standard Airtable field types, including:

  • singleLineText
  • multilineText
  • checkbox
  • singleSelect
  • multipleSelect
  • date
  • number
  • currency
  • email
  • url
  • And more...

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.

Quick Start

  1. Add an Airtable Create node to your workflow.
  2. Configure the Airtable Enterprise API credentials.
  3. Enter a name for your new base.
  4. Use the provided JSON template or paste your own base structure.
  5. Execute the node to create your base.

Resources

License

This project is licensed under the MIT License.