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

@withvlibe/base-sdk

v1.0.1

Published

SDK for Vlibe Base Apps - includes authentication, database, payments with transaction fees, and category-specific helpers for websites, SaaS, and e-commerce

Readme

@withvlibe/base-sdk

SDK for Vlibe Base Apps - build websites, SaaS applications, and e-commerce stores with authentication, database, and payments out of the box.

Features

  • Authentication - SSO with Vlibe accounts
  • Database - Managed database with CRUD operations and real-time subscriptions
  • Payments - Stripe Connect integration with transaction fees (not revenue split)
  • React Hooks - Ready-to-use hooks for React/Next.js applications
  • TypeScript - Full type safety

Installation

npm install @withvlibe/base-sdk
# or
yarn add @withvlibe/base-sdk
# or
pnpm add @withvlibe/base-sdk

Quick Start

1. Environment Setup

Add these environment variables to your .env file:

# Vlibe Base App credentials
VLIBE_BASE_APP_ID=your_app_id
VLIBE_BASE_APP_SECRET=your_app_secret

# Database access
VLIBE_PROJECT_ID=your_project_id
VLIBE_DB_TOKEN=your_database_token

# Client-side variables (for Next.js)
NEXT_PUBLIC_VLIBE_PROJECT_ID=your_project_id
NEXT_PUBLIC_VLIBE_DB_TOKEN=your_database_token
NEXT_PUBLIC_VLIBE_BASE_APP_ID=your_app_id

2. Initialize Clients

import { VlibeBaseDatabase, VlibeBaseAuth, VlibeBasePayments } from '@withvlibe/base-sdk';

// Database client (can be used client-side or server-side)
export const db = new VlibeBaseDatabase({
  projectId: process.env.VLIBE_PROJECT_ID!,
  databaseToken: process.env.VLIBE_DB_TOKEN!,
});

// Auth client
export const auth = new VlibeBaseAuth({
  appId: process.env.VLIBE_BASE_APP_ID!,
  appSecret: process.env.VLIBE_BASE_APP_SECRET!,
});

// Payments client (SERVER-SIDE ONLY)
export const payments = new VlibeBasePayments({
  appId: process.env.VLIBE_BASE_APP_ID!,
  appSecret: process.env.VLIBE_BASE_APP_SECRET!,
});

Database

CRUD Operations

// Insert a document
const doc = await db.insert('todos', {
  title: 'Learn Vlibe Base',
  completed: false,
});

// Query documents
const todos = await db.query('todos', {
  where: { completed: false },
  orderBy: 'created_at',
  orderDirection: 'desc',
  limit: 10,
});

// Get a single document
const todo = await db.get('todos', 'document-id');

// Update a document
await db.update('todos', 'document-id', {
  completed: true,
});

// Delete a document
await db.delete('todos', 'document-id');

// Count documents
const count = await db.count('todos', { completed: false });

Key-Value Store

// Set a value
await db.setKV('user-settings', {
  theme: 'dark',
  notifications: true,
});

// Get a value
const settings = await db.getKV<{ theme: string; notifications: boolean }>('user-settings');

// Delete a value
await db.deleteKV('user-settings');

Real-time Subscriptions

// Subscribe to changes
const subscription = db.subscribe('todos', (payload) => {
  console.log('Change detected:', payload.eventType);
  console.log('New data:', payload.new);
  console.log('Old data:', payload.old);
});

// Unsubscribe when done
subscription.unsubscribe();

// Unsubscribe all
db.unsubscribeAll();

Authentication

// Verify a session token (from SSO callback)
const user = await auth.verifySession(token);

// Get login URL
const loginUrl = auth.getLoginUrl('/dashboard');

// Get logout URL
const logoutUrl = auth.getLogoutUrl('/');

// Check features/subscription
if (auth.hasFeature(user, 'premium-feature')) {
  // Show premium content
}

if (auth.hasSubscription(user)) {
  // User has active subscription
}

Payments

Vlibe Base uses a transaction fee model:

  • Free plan: 2% transaction fee
  • Premium plan: 0.5% transaction fee
// Create a checkout session
const session = await payments.createCheckout({
  amount: 1999, // $19.99 in cents
  currency: 'usd',
  userId: user.id,
  userEmail: user.email,
  description: 'Premium Subscription',
  successUrl: 'https://myapp.com/success',
  cancelUrl: 'https://myapp.com/cancel',
});

// Redirect user to checkout
window.location.href = session.url;

// Get transaction history
const transactions = await payments.getTransactions({
  limit: 20,
  status: 'succeeded',
});

// Get transaction stats
const stats = await payments.getTransactionStats();
console.log('Total revenue:', stats.totalRevenue);
console.log('This month:', stats.thisMonth.revenue);

// Create a refund
await payments.createRefund({
  transactionId: 'transaction-id',
  amount: 999, // Partial refund of $9.99
  reason: 'Customer requested',
});

// Calculate fees
const fee = payments.calculateFee(1999, 'free'); // 40 cents (2%)
const net = payments.calculateNetAmount(1999, 'free'); // 1959 cents

Stripe Connect Setup

// Get onboarding URL for users to connect their Stripe account
const onboardingUrl = await payments.getConnectOnboardingUrl(
  'https://myapp.com/stripe/callback'
);

// Check Connect status
const status = await payments.getConnectStatus();
if (status.chargesEnabled && status.payoutsEnabled) {
  // Ready to accept payments
}

React Hooks

import { useCollection, useKV, useAuth } from '@withvlibe/base-sdk/react';

function TodoApp() {
  // Collection hook with real-time updates
  const { data: todos, loading, insert, update, remove } = useCollection(db, 'todos', {
    orderBy: 'created_at',
    orderDirection: 'desc',
    realtime: true,
  });

  // Key-value hook
  const { data: settings, set: setSettings } = useKV(db, 'user-settings');

  // Auth hook
  const { user, login, logout, hasFeature } = useAuth(auth);

  if (loading) return <div>Loading...</div>;

  if (!user) {
    return <button onClick={() => login()}>Login with Vlibe</button>;
  }

  return (
    <div>
      <h1>Welcome, {user.name}!</h1>

      {/* Theme toggle */}
      <button onClick={() => setSettings({ ...settings, theme: 'dark' })}>
        Dark Mode
      </button>

      {/* Todo list */}
      <ul>
        {todos.map((todo) => (
          <li key={todo.id}>
            <input
              type="checkbox"
              checked={todo.completed}
              onChange={() => update(todo.id, { completed: !todo.completed })}
            />
            {todo.title}
            <button onClick={() => remove(todo.id)}>Delete</button>
          </li>
        ))}
      </ul>

      {/* Add todo */}
      <button onClick={() => insert({ title: 'New Todo', completed: false })}>
        Add Todo
      </button>

      {/* Premium feature */}
      {hasFeature('analytics') && <Analytics />}

      <button onClick={() => logout()}>Logout</button>
    </div>
  );
}

Category-Specific Helpers

The SDK includes TypeScript types for common patterns:

Website

import type { Page, Media } from '@withvlibe/base-sdk';

const pages = await db.query<Page>('pages', { where: { isPublished: true } });
const media = await db.query<Media>('media');

SaaS

import type { FeatureFlag, UsageMetric } from '@withvlibe/base-sdk';

const flags = await db.query<FeatureFlag>('feature_flags');
const usage = await db.query<UsageMetric>('usage_metrics', {
  where: { userId: user.id },
});

E-commerce

import type { Product, Order, OrderItem } from '@withvlibe/base-sdk';

const products = await db.query<Product>('products', { where: { isActive: true } });
const orders = await db.query<Order>('orders', { where: { userId: user.id } });

API Reference

VlibeBaseDatabase

| Method | Description | |--------|-------------| | insert(collection, data) | Insert a document | | query(collection, options?) | Query documents | | get(collection, id) | Get a document by ID | | update(collection, id, data) | Update a document | | delete(collection, id) | Delete a document | | count(collection, where?) | Count documents | | setKV(key, value) | Set a key-value pair | | getKV(key) | Get a value by key | | deleteKV(key) | Delete a key-value pair | | subscribe(collection, callback) | Subscribe to real-time changes | | unsubscribeAll() | Unsubscribe from all subscriptions |

VlibeBaseAuth

| Method | Description | |--------|-------------| | verifySession(token) | Verify a session token | | getLoginUrl(redirectPath?) | Get SSO login URL | | getLogoutUrl(redirectPath?) | Get logout URL | | hasFeature(user, feature) | Check if user has feature access | | hasSubscription(user) | Check if user has subscription | | getTier(user) | Get user's subscription tier |

VlibeBasePayments

| Method | Description | |--------|-------------| | createCheckout(options) | Create a checkout session | | getCheckoutSession(id) | Get checkout session details | | getTransactions(options?) | Get transaction history | | getTransaction(id) | Get a single transaction | | getTransactionStats() | Get transaction statistics | | createRefund(options) | Create a refund | | getConnectOnboardingUrl(returnUrl) | Get Stripe Connect onboarding URL | | getConnectStatus() | Get Stripe Connect status | | calculateFee(amount, plan) | Calculate transaction fee | | calculateNetAmount(amount, plan) | Calculate net amount after fees |

Comparison with Vlibe Official SDK

| Feature | Base SDK | Official SDK | |---------|----------|--------------| | Auth | ✅ SSO | ✅ SSO | | Database | ✅ Managed | ✅ Shared | | Payments | ✅ Transaction fees (0.5-2%) | ✅ Revenue split (50/50) | | Hosting | Self-hosted | Vlibe-hosted | | Revenue | Keep 98-99.5% | Keep 50% | | Best for | Independent apps | Vlibe ecosystem apps |

License

MIT © Vlibe