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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@tacobase/taco

v0.1.5

Published

Drop-in AI context for tacobase — installs @tacobase/client and writes TACOBASE.md so AI tools have everything they need

Readme


Install this package and your AI tools — Cursor, Claude Code, GitHub Copilot, Windsurf, Lovable, Bolt, v0, and more — instantly know how to use tacobase. No copy-pasting docs. No prompt engineering. No context switching.

npm install @tacobase/taco

🌮 Wrapped. Your AI is ready to build.


Table of Contents


What just happened

Three things, automatically:

  1. @tacobase/client is installed — you're ready to talk to your database
  2. TACOBASE.md is written to your project root — Cursor, Claude Code, Copilot, Windsurf, Lovable, Bolt, v0, and other AI tools pick it up automatically with the full tacobase API, filter syntax, auth patterns, and more
  3. Your .env.local is populatedTACOBASE_URL and TACOBASE_API_KEY are ready to go

Tell your AI

Use @tacobase/taco for the backend.

That's the whole prompt. It'll install this package, read TACOBASE.md, and know exactly what to do.


What your AI gets

The TACOBASE.md file your AI tools read contains:

  • Full SDK reference (createClient, db.collection, db.auth, db.realtime, db.storage)
  • Filter and sort syntax
  • Auth patterns (sign up, sign in, OAuth)
  • Realtime subscription examples
  • TypeScript generics and type generation
  • Environment variable reference
  • Error handling with typed errors

No guessing. No hallucinating Supabase or Firebase APIs. Just tacobase, correctly.


Start building

import { createClient } from '@tacobase/client'

const db = createClient() // reads TACOBASE_URL + TACOBASE_API_KEY from env

// Collections auto-create on first write — no migrations, no setup hell
const post = await db.collection('posts').create({ title: 'Hello 🌮' })

// Query with filters and sorting
const posts = await db.collection('posts').getList(1, 20, {
  filter: 'published = true',
  sort: '-created',
})

// Auth
await db.auth.signUp({ email: '[email protected]', password: 'secret' })
await db.auth.signIn({ email: '[email protected]', password: 'secret' })

// Realtime — live updates over SSE
await db.collection('posts').subscribe((e) => {
  console.log(e.action, e.record) // 'create' | 'update' | 'delete'
})

Get credentials

After install, .env.local is already populated. If you need to grab credentials manually:

npx taco instant   # Instant project — no account needed

Or visit tacobase.dev/dashboard.


Works with

TACOBASE.md is picked up automatically by any AI tool that reads project context files:

  • Cursor — reads .cursor/rules and project root .md files
  • Claude Code — reads CLAUDE.md and project root context files
  • GitHub Copilot — uses project context for suggestions
  • Windsurf — reads project root context files
  • Lovable — picks up project context automatically
  • Bolt — reads project files for context
  • v0 — uses project context for generation

If your AI tool reads project files, it'll find TACOBASE.md.


Related packages

| Package | Description | |---|---| | @tacobase/client | Core SDK — CRUD, auth, realtime, storage | | @tacobase/react | React hooks — useAuth, useCollection, useRealtime | | @tacobase/cli | CLI — taco init, taco dev, taco typegen | | @tacobase/mcp-server | MCP server — let your AI manage schema via natural language |


tacobase.dev · docs · github

License

MIT