New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

n8n-nodes-vercel

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

n8n-nodes-vercel

n8n community node for deploying static HTML sites to Vercel

latest
Source
npmnpm
Version
0.6.9
Version published
Maintainers
1
Created
Source

n8n-nodes-vercel

This is an n8n community node for deploying static HTML sites to Vercel.

Vercel is a cloud platform for static sites and serverless functions that enables developers to deploy web applications with zero configuration.

n8n is a fair-code licensed workflow automation platform.

Installation
Operations
Credentials
Compatibility
Usage
Resources
Version history

Installation

Follow the installation guide in the n8n community nodes documentation.

In your n8n instance, go to SettingsCommunity NodesInstall and enter:

n8n-nodes-vercel

Or install via npm:

npm install n8n-nodes-vercel

Operations

Deployment

  • Create: Deploy a static HTML site to Vercel
    • Supports blocking mode (wait for completion) or async mode (return immediately)
    • Automatically creates or reuses projects
    • Optional project protection disabling
  • Get: Query deployment status by deployment ID

Credentials

This node requires a Vercel API token:

  • Go to Vercel Account Settings
  • Create a new token
  • Enter the token in the node credentials
  • (Optional) Enter your Team ID if deploying to a team account

Compatibility

  • Minimum n8n version: 1.0.0
  • Tested with: n8n 1.0.0+

Usage

Basic Deployment

  • Add the Vercel node to your workflow
  • Configure credentials with your Vercel API token
  • Select DeploymentCreate
  • Enter your HTML content (or file path)
  • Optionally specify a project name (if not provided, a new project will be created)
  • Choose deployment mode:
    • Blocking: Wait for deployment to complete (default)
    • Async: Return immediately with deployment ID
  • Configure other options:
    • Deploy to Production: Whether to deploy to production environment
    • Disable Project Protection: Disable SSO and password protection (default: enabled)
    • Max Wait Time: Maximum time to wait for deployment completion (blocking mode only)

Query Deployment Status

  • Select DeploymentGet
  • Enter the deployment ID
  • The node will return the current deployment status

Deployment Modes

  • Blocking Mode (default): The node waits for the deployment to complete (success or failure) before returning. This is useful when you need to know the final status immediately.
  • Async Mode: The node returns immediately with a deployment ID. You can use the Get operation to query the status later.

Project Management

  • If you provide a Project Name, the node will:
    • Look for an existing project with that name
    • If found, deploy to that project
    • If not found, create a new project with that name
  • If you don't provide a Project Name, the node will:
    • Create a new project with the name n8n-{timestamp}

Resources

Version history

0.6.1

  • Changed default deployment mode to blocking

0.6.0

  • Integrated disable project protection into deployment configuration
  • Made project name optional
  • Fixed project ID handling

0.5.1

  • Fixed missing name field in deployment request

0.5.0

  • Added deployment status query operation
  • Added blocking and async deployment modes
  • Improved error handling

0.4.1

  • Fixed file content encoding (plain text instead of base64)

0.4.0

  • Removed vercel.json requirement
  • Fixed deployment file format

0.3.1

  • Initial release with basic deployment functionality

Keywords

n8n-community-node-package

FAQs

Package last updated on 25 Nov 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts