Documentation

Comprehensive guides and API references for n8nVibes developers.

n8nVibes Documentation

Welcome to the official n8nVibes documentation! Here you'll find everything you need to get started, integrate, and extend our platform.

Quick Start

Installation

  1. Create a new n8nVibes project:

    npx create-vibespace-app my-app
    cd my-app
    
  2. Install dependencies:

    bun install
    
  3. Run the development server:

    bun dev
    

Configuration

Edit next.config.js for custom settings. See Configuration Guide for details.

API Reference

Authentication

  • Login Endpoint: POST /api/auth/login
  • Register Endpoint: POST /api/auth/register

Example login request:

{
  "email": "user@example.com",
  "password": "securepassword"
}

Guides

Resources

For more in-depth tutorials, check our Blog.

Last Updated: October 29, 2025