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

realtimex-crm

v0.49.2

Published

RealTimeX CRM - A full-featured CRM with zero cloud costs and complete privacy.

Readme

RealTimeX CRM

A full-featured CRM with zero cloud costs and complete privacy. Fork of Atomic CRM with enhanced "Bring Your Own Database" configuration.

https://github.com/user-attachments/assets/0d7554b5-49ef-41c6-bcc9-a76214fc5c99

RealTimeX CRM is free and open-source.

Live Demo

Experience RealTimeX CRM immediately: realtimex-crm.vercel.app

Admin Credentials:

[!NOTE] This demo uses an in-memory database. All changes are local to your browser session and will reset upon refreshing the page.

Features

  • 📇 Organize Contacts: Keep all your contacts in one easily accessible place.
  • Create Tasks & Set Reminders: Never miss a follow-up or deadline.
  • 📝 Take Notes: Capture important details and insights effortlessly.
  • ✉️ Capture Emails: CC RealTimeX CRM to automatically save communications as notes.
  • 📊 Manage Deals: Visualize and track your sales pipeline in a Kanban board.
  • 🔄 Import & Export Data: Easily transfer contacts in and out of the system.
  • 🔐 Control Access: Log in with Google, Azure, Keycloak, and Auth0.
  • 📜 Track Activity History: View all interactions in aggregated activity logs.
  • 🔗 Integrate via API: Connect seamlessly with other systems using our API.
  • 🛠️ Customize Everything: Add custom fields, change the theme, and replace any component to fit your needs.
  • 🗄️ Bring Your Own Database: Configure Supabase connection via UI or environment variables.

Quick Start

Option 1: Use the CLI (Recommended)

Create a new CRM project in seconds:

npx create-realtimex-crm@latest

The CLI will guide you through:

  1. Choosing a template (standalone app, RealTimeX Local App, or component)
  2. Configuring Supabase (optional)
  3. Setting up your project structure

Then:

cd my-crm
npm install
npm run dev

Option 2: Clone and Customize

To run this project locally, you will need:

Clone the repository:

git clone https://github.com/therealtimex/realtimex-crm.git
cd realtimex-crm

Install dependencies:

npm install

Start the development server:

npm run dev

Access the app at http://localhost:5173/

First Launch:

  1. Setup wizard appears automatically
  2. Choose one of:
    • Connect to Supabase: Enter your project URL and API key
    • Try Demo Mode: Use in-memory database (no signup required)
  3. If using Supabase, configure via:
    • Setup wizard (recommended for users)
    • OR set environment variables in .env.development.local:
      VITE_SUPABASE_URL=https://xxxxx.supabase.co
      VITE_SUPABASE_ANON_KEY=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...

Managing Your Remote Supabase:

  • Dashboard: https://supabase.com/dashboard/project/YOUR_PROJECT_ID
  • Storage: View attachments in Supabase dashboard
  • Database: Run migrations via Settings → Database in the app

User Documentation

  1. User Management
  2. Importing And Exporting Data
  3. Inbound Email

Deploying to Production

  1. Configuring Supabase
  2. Configuring Inbound Email (optional)
  3. Deployment

Customizing RealTimeX CRM

To customize RealTimeX CRM, you will need TypeScript and React programming skills as there is no graphical user interface for customization. Here are some resources to assist you in getting started.

  1. Customizing the CRM
  2. Creating Migrations (optional)
  3. Using Fake Rest Data Provider for Development (optional)
  4. Architecture Decisions (optional)

Testing Changes

This project contains unit tests. Run them with the following command:

npm test

You can add your own unit tests powered by Vitest anywhere in the src directory. The test files should be named *.test.tsx or *.test.ts.

Development Commands

npm install              # Install dependencies
npm run dev              # Start development server
npm run dev:demo         # Start with demo mode (no database)
npm test                 # Run unit tests (vitest)
npm run typecheck        # Run TypeScript type checking
npm run lint             # Run ESLint and Prettier checks
npm run build            # Build production bundle
npm run serve            # Serve production build locally

# Developer commands (remote Supabase management)
npx supabase db push     # Push migrations to remote Supabase

Registry

RealTimeX CRM components are published as a Shadcn Registry file:

  • The registry.json file is automatically generated by the scripts/generate-registry.mjs script as a pre-commit hook.
  • The registry is automatically published by the CI/CD pipeline

[!WARNING] If the registry.json misses some changes you made, you MUST update the scripts/generate-registry.mjs to include those changes.

CLI Templates

The create-realtimex-crm CLI provides three templates:

1. Standalone App

A complete CRM application ready to deploy:

  • Full Vite + React setup
  • TypeScript configuration
  • Production build scripts
  • Environment-based configuration

2. RealTimeX Local App

CRM integrated with RealTimeX.ai platform:

  • @realtimex/app-sdk integration
  • Auto-scoped data by user
  • Parent-child user support
  • Platform authentication
  • See LOCAL_APP.md in generated project for details

3. Component Integration

Use RealTimeX CRM as a component in your existing app:

  • Install via npm
  • Import and configure
  • Example integration code included

NPM Package

RealTimeX CRM is available as an npm package:

npm install realtimex-crm

The package includes all source code, components, and Supabase migrations for easy integration.

License

This project is licensed under the MIT License. Original project courtesy of RealTimeX. See the LICENSE.md file for details.

Credits

This project is a fork of Atomic CRM by Marmelab, enhanced with:

  • "Bring Your Own Database" UI configuration
  • Simplified deployment workflows
  • NPM package distribution
  • RealTimeX App SDK integration support (planned)