base44-coder

Installation
SKILL.md

Base44 Coder

Build apps on the Base44 platform using the Base44 JavaScript SDK.

Quick Start

// In Base44-generated apps (pre-configured)
import { base44 } from "@/api/base44Client";

// CRUD operations
const task = await base44.entities.Task.create({ title: "New task", status: "pending" });
const tasks = await base44.entities.Task.list();
await base44.entities.Task.update(task.id, { status: "done" });

// Get current user
const user = await base44.auth.me();
Related skills
Installs
2
Repository
base44/skills
GitHub Stars
74
First Seen
Jan 20, 2026