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

@databasin/cli

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@databasin/cli

Command-line interface for Databasin data integration platform - manage projects, connectors, pipelines, and execute SQL queries

latest
Source
npmnpm
Version
0.8.0
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

Databasin CLI

Command-line interface for the Databasin data integration platform.

Installation

npm (Node.js 20+ or Bun 1.3+)

# Install globally
npm install -g @databasin/cli

# Or run directly with npx
npx @databasin/cli --help

Bun

bun add -g @databasin/cli

Quick Start

# Login via browser
databasin auth login

# Verify authentication
databasin auth whoami

# List projects
databasin projects list

# List connectors
databasin connectors list

# Execute SQL query
databasin sql exec <connector-id> "SELECT * FROM users LIMIT 10"

Commands

CommandDescription
authLogin, verify token, view user context
projectsList and manage projects
connectorsCreate, update, delete data connectors
pipelinesRun and monitor data pipelines
sqlExecute SQL queries, explore schemas
automationsManage and trigger automations
apiGeneric API access (GET, POST, PUT, DELETE)

Configuration

# Authentication (set automatically by `databasin auth login`)
export DATABASIN_TOKEN="your-token"

# API URL (optional)
export DATABASIN_API_URL="https://api.databasin.ai"

# Debug mode (optional)
export DATABASIN_DEBUG=true

Or create ~/.databasin/config.json:

{
  "apiUrl": "https://api.databasin.ai",
  "output": { "format": "table", "colors": true }
}

Output Formats

databasin projects list           # Table (default)
databasin projects list --json    # JSON
databasin projects list --csv     # CSV
databasin projects list --fields id,name  # Filter fields

Documentation

For complete documentation, examples, and development guides:

https://github.com/databasin-ai/databasin-cli

Support

License

CC-BY-4.0

Keywords

databasin

FAQs

Package last updated on 13 Dec 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