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

p3x-redis-ui-material

v2026.4.441

Published

πŸ’Ώ P3X Redis UI triple frontend β€” Angular + React/MUI + Vue/Vuetify with 54 languages, 7 themes, Socket.IO, desktop notifications, and full feature parity

Downloads

42,228

Readme

This is a development package

For the full-blown package, please follow:
https://github.com/patrikx3/redis-ui
https://www.npmjs.com/package/p3x-redis-ui
https://corifeus.com/redis-ui

NPM Donate for PatrikX3 / P3X Contact Corifeus / P3X Corifeus @ Facebook Uptime ratio (90 days)


πŸ’Ώ P3X Redis UI triple frontend β€” Angular + React/MUI + Vue/Vuetify with 54 languages, 7 themes, Socket.IO, desktop notifications, and full feature parity v2026.4.441

🌌 Bugs are evidentβ„’ - MATRIX️
🚧 This project is under active development!
πŸ“’ We welcome your feedback and contributions.

NodeJS LTS is supported

πŸ› οΈ Built on NodeJs version

v24.14.1

πŸ“¦ Built on Angular

21.2.8

πŸ“ Description

The p3x-redis-ui-material package is the triple frontend for p3x-redis-ui. It provides three fully independent, feature-parity GUIs that connect to p3x-redis-ui-server via Socket.IO:

Angular Frontend (/ng/)

  • Angular (latest LTS) with standalone components and Angular Signals
  • Angular Material component library
  • Webpack bundler with AOT compilation via @ngtools/webpack
  • CDK virtual scrolling for tree view performance

React Frontend (/react/)

  • React (latest LTS) with functional components and hooks
  • MUI (Material UI) component library matching Angular Material's look and feel
  • Vite bundler β€” instant dev server startup and fast production builds
  • Zustand lightweight state management replacing Angular services
  • @tanstack/react-virtual for virtual scrolling

Vue Frontend (/vue/)

  • Vue 3 with Composition API and <script setup>
  • Vuetify 3 component library matching Material Design
  • Vite bundler β€” instant dev server startup and fast production builds
  • Pinia state management replacing Angular services

Shared Across All Three

  • 54 languages with auto browser/system locale detection and "Auto (system)" option
  • 7 themes β€” Light, Enterprise, Redis (light) + Dark, Dark Neu, Darko Bluo, Matrix (dark) β€” with auto system preference detection
  • Same Socket.IO protocol β€” identical backend API
  • Same translation system β€” single source of truth in src/strings/
  • CodeMirror JSON editor with GitHub dark/light themes
  • uPlot lightweight canvas charts for monitoring dashboards
  • Web Worker tree building β€” key sorting off the main thread
  • Desktop notifications β€” Electron native + Web Notification API
  • Playwright E2E tests β€” run against all three frontends in parallel
  • Live switching β€” toggle between Angular, React, and Vue in Settings

ACL Management (Redis 6.0+)

The first Redis GUI with a visual ACL (Access Control List) editor. No other Redis desktop tool provides this β€” not even RedisInsight.

  • Auto-discovery β€” ACL section appears in Settings only when connected to Redis 6.0+, auto-loads users
  • Visual user list β€” hoverable rows showing username, current user badge, disabled warning icon
  • Chip-based permission editor β€” commands, key patterns, and pub/sub channels as removable chips instead of raw text
    • Color-coded command chips: blue for allow (+@all), red for deny (-@dangerous)
    • Type and press Enter/Space/Comma to add chips
  • Structured form β€” enable/disable toggle, no-password checkbox, password field, separate fields for commands, keys, and channels
  • Full CRUD β€” create, edit, and delete ACL users with proper confirmation dialogs
  • Safe editing β€” resets permissions before applying changes so removed chips actually take effect
  • Cluster-aware β€” ACL SETUSER/DELUSER broadcast to all master nodes
  • Readonly mode β€” edit/delete/create buttons hidden when connection is readonly
  • Guards β€” cannot delete the default user or the currently connected user

Project Structure

src/
β”œβ”€β”€ ng/                     # Angular frontend
β”‚   β”œβ”€β”€ pages/              # Lazy-loaded page components
β”‚   β”œβ”€β”€ dialogs/            # Modal dialogs
β”‚   β”œβ”€β”€ components/         # Reusable UI components
β”‚   β”œβ”€β”€ services/           # Angular services (signals-based state)
β”‚   └── layout/             # App shell, header, footer
β”œβ”€β”€ react/                  # React frontend
β”‚   β”œβ”€β”€ pages/              # Page components (console, database, monitoring, search, settings, info)
β”‚   β”œβ”€β”€ dialogs/            # Modal dialogs
β”‚   β”œβ”€β”€ components/         # Reusable UI components
β”‚   β”œβ”€β”€ stores/             # Zustand stores (state management)
β”‚   β”œβ”€β”€ layout/             # App shell, header, footer
β”‚   β”œβ”€β”€ themes/             # MUI theme definitions
β”‚   β”œβ”€β”€ vite.config.ts      # Vite configuration
β”‚   └── index.html          # React entry HTML
β”œβ”€β”€ core/                   # Shared utilities (detect-language, translation-loader)
β”œβ”€β”€ strings/                # 54 language translation files
β”‚   β”œβ”€β”€ en/strings.js       # English (primary)
β”‚   β”œβ”€β”€ de/strings.js       # German
β”‚   └── .../strings.js      # 52 more languages
β”œβ”€β”€ scss/                   # Shared theme CSS variables (7 themes)
β”œβ”€β”€ public/                 # Static assets (images, icons)
β”œβ”€β”€ builder/                # Webpack config for Angular
β”‚   └── webpack.config.js
└── tests/                  # Playwright E2E tests
    β”œβ”€β”€ redis-ui.spec.js    # Shared test spec (runs against both GUIs)
    └── run-e2e.sh          # Test runner script

NPM Scripts

| Script | Description | |--------|-------------| | yarn run dev | Start Angular dev server (Webpack, port 8080) | | yarn run dev-react | Start React dev server (Vite, port 8082) | | yarn run build | Production build Angular β†’ dist/ | | yarn run build-react | Production build React β†’ dist-react/ | | yarn run stats | Angular bundle analysis with webpack-bundle-analyzer | | yarn run test:e2e | Run Playwright E2E tests (both GUIs) | | yarn run test:e2e:gui | Run E2E tests with Playwright UI |

Development

For file names do not use camelCase, but use kebab-case. Folder should be named as kebab-case as well. As you can see, all code filenames are using it like that, please do not change that. Please apply the .editorconfig settings in your IDE.

Prerequisites

Requires a running p3x-redis-ui-server backend (default port 7843). Override with P3XR_API_PORT:

P3XR_API_PORT=7844 yarn run dev-react

Angular development

yarn install
yarn run dev
  • Dev server: http://localhost:8080/ng/
  • Webpack proxies Socket.IO to backend on port 7843
  • Hot module reload enabled
  • CSP headers configured for development

React development

yarn install
yarn run dev-react
  • Dev server: http://localhost:8082/react/
  • Vite proxies Socket.IO to backend on port 7843
  • Instant HMR via Vite's native ESM
  • CJS translation files auto-transformed to ESM via custom plugin

Running both simultaneously

# Terminal 1: Angular
yarn run dev

# Terminal 2: React  
yarn run dev-react

# Terminal 3: Backend
cd ../redis-ui-server && yarn run dev

Key Dependencies

All dependencies track the latest LTS versions and are regularly upgraded.

Angular (devDependencies β€” bundled at build time)

| Package | Purpose | |---------|---------| | @angular/core | Framework | | @angular/material | UI component library | | @angular/cdk | Virtual scrolling, drag-drop | | @ngtools/webpack | AOT compilation | | webpack | Bundler | | typescript | Type system |

React (dependencies β€” shipped in npm package)

| Package | Purpose | |---------|---------| | react | Framework | | @mui/material | UI component library | | zustand | State management | | @tanstack/react-virtual | Virtual scrolling | | react-router-dom | Client-side routing | | vite | Bundler (devDependency) |

Shared

| Package | Purpose | |---------|---------| | socket.io-client | Real-time communication with backend | | codemirror + @codemirror/* | JSON editor | | uplot | Lightweight canvas charts (monitoring) | | jspdf | PDF export | | jszip | ZIP export (memory analysis) | | @dnd-kit/* | Drag-and-drop (connection groups) | | lodash | Utility functions (merge for i18n) |

E2E Testing

Playwright tests run against both frontends in parallel using a shared test spec:

# Run all tests (Angular + React + Vue)
yarn run test:e2e

# Run with Playwright UI
yarn run test:e2e:gui

Tests cover: connect, disconnect, key operations, search, settings, monitoring, and GUI switching.


πŸš€ Quick and Affordable Web Development Services

If you want to quickly and affordably develop your next digital project, visit corifeus.eu for expert solutions tailored to your needs.


🌐 Powerful Online Networking Tool

Discover the powerful and free online networking tool at network.corifeus.com.

πŸ†“ Free
Designed for professionals and enthusiasts, this tool provides essential features for network analysis, troubleshooting, and management.
Additionally, it offers tools for:

  • πŸ“‘ Monitoring TCP, HTTP, and Ping to ensure optimal network performance and reliability.
  • πŸ“Š Status page management to track uptime, performance, and incidents in real time with customizable dashboards.

All these features are completely free to use.


❀️ Support Our Open-Source Project

If you appreciate our work, consider ⭐ starring this repository or πŸ’° making a donation to support server maintenance and ongoing development. Your support means the world to usβ€”thank you!


🌍 About My Domains

All my domains, including patrikx3.com, corifeus.eu, and corifeus.com, are developed in my spare time. While you may encounter minor errors, the sites are generally stable and fully functional.


πŸ“ˆ Versioning Policy

Version Structure: We follow a Major.Minor.Patch versioning scheme:

  • Major: πŸ“… Corresponds to the current year.
  • Minor: πŸŒ“ Set as 4 for releases from January to June, and 10 for July to December.
  • Patch: πŸ”§ Incremental, updated with each build.

🚨 Important Changes: Any breaking changes are prominently noted in the readme to keep you informed.


P3X-REDIS-UI-MATERIAL Build v2026.4.441

NPM Donate for PatrikX3 / P3X Contact Corifeus / P3X Like Corifeus @ Facebook