Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

realtimex-crm

Package Overview
Dependencies
Maintainers
1
Versions
158
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

realtimex-crm

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

latest
Source
npmnpm
Version
0.49.2
Version published
Maintainers
1
Created
Source

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:

  • Email: janedoe@realtimex.ai
  • Password: crmdemo

[!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

Create a new CRM project in seconds:

npx create-realtimex-crm@latest

The CLI will guide you through:

  • Choosing a template (standalone app, RealTimeX Local App, or component)
  • Configuring Supabase (optional)
  • 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:

  • Node 22 LTS
  • A free Supabase account (create at supabase.com)

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:

  • Setup wizard appears automatically
  • Choose one of:
    • Connect to Supabase: Enter your project URL and API key
    • Try Demo Mode: Use in-memory database (no signup required)
  • 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:

User Documentation

Deploying to Production

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.

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)

Keywords

crm

FAQs

Package last updated on 09 Feb 2026

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