Dataset Viewer

The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.

Chahuadev Framework - Plugin Management System

Electron-based Desktop Application for Managing and Executing NPM Projects


Documentation

All documentation files have been organized in the docs/ folder:

Core Documentation

Authentication & Security


🐧 Running the AppImage on Linux / WSL2 (Ubuntu)

First install the required system libraries (one-time setup):

sudo apt-get update && sudo apt-get install -y \
  libnss3 libatk1.0-0 libatk-bridge2.0-0 libcups2 \
  libdrm2 libxkbcommon0 libxcomposite1 libxdamage1 \
  libxrandr2 libgbm1 libasound2

Then run the AppImage:

chmod +x "Chahuadev-Framework.AppImage"
DISPLAY=:0 WAYLAND_DISPLAY=wayland-0 \
  ./"Chahuadev-Framework.AppImage" \
  --appimage-extract-and-run --no-sandbox --disable-gpu

WSL2 tip: Copy the AppImage to the WSL native filesystem first for best performance:

# Path after: npm install -g @chahuadev/framework
# (no sudo)
cp ~/.npm-global/lib/node_modules/@chahuadev/framework/bin/Chahuadev-Framework.AppImage /tmp/ChahuadevFramework.AppImage
# (with sudo)
# cp /usr/lib/node_modules/@chahuadev/framework/bin/Chahuadev-Framework.AppImage /tmp/ChahuadevFramework.AppImage
chmod +x /tmp/ChahuadevFramework.AppImage
DISPLAY=:0 WAYLAND_DISPLAY=wayland-0 /tmp/ChahuadevFramework.AppImage \
  --appimage-extract-and-run --no-sandbox --disable-gpu

Quick Start

# Install dependencies
npm install

# Start development server
npm start

# Start with dev mode
npm run dev

# Generate builds
npm run build          # All platforms
npm run build-win      # Windows only
npm run build-msi      # MSI installer
npm run build-exe      # Portable executable
npm run build-nsis     # NSIS installer

Key Features

Offline Authentication - No internet connection required SVG Icon System - 40+ SVG icons for UI/logging Fort-Knox Security - Anti-debugging, tamper detection, runtime integrity checks Gateway Pattern - Centralized command processing and validation Multi-User Support - Admin, Developer, User roles with permission levels Plugin Management - Load and execute NPM projects as plugins


Project Structure

chahuadev-framework/
β”œβ”€β”€ docs/                    # Documentation (moved here)
β”‚   β”œβ”€β”€ README.md
β”‚   β”œβ”€β”€ IMPLEMENTATION_COMPLETE.txt
β”‚   β”œβ”€β”€ OFFLINE_AUTH_GUIDE.md
β”‚   β”œβ”€β”€ AUTH_SECURITY_GUIDE.md
β”‚   └── ...
β”œβ”€β”€ src/
β”œβ”€β”€ backend/                 # Backend utilities
β”œβ”€β”€ modules/                 # Core modules
β”‚   β”œβ”€β”€ svg-icons.js        # SVG icon system (40+ icons)
β”‚   β”œβ”€β”€ tamper-detector.js
β”‚   └── ...
β”œβ”€β”€ scripts/                 # Build and utility scripts
β”œβ”€β”€ main.js                  # Electron main process
β”œβ”€β”€ preload.js              # Preload script for IPC
β”œβ”€β”€ index.html              # Main UI
β”œβ”€β”€ validation_gateway.js    # Command gateway with auth
└── package.json

Authentication System

Demo Users (Offline Mode)

Username: admin      | Password: demo123 | Role: Administrator | Permissions: read, write, admin
Username: developer  | Password: demo123 | Role: Developer     | Permissions: read, write
Username: user       | Password: demo123 | Role: User          | Permissions: read

Token Storage

  • Location: ~/.chahuadev/auth.json
  • Expiration: 24 hours

Permission Levels

  • read - View data, list plugins
  • write - Run commands, execute npm
  • admin - System configuration, auth checks

Security Features

Fort-Knox Level Security

  • Anti-debugging protection
  • Tamper detection system
  • Runtime integrity checks
  • DevTools protection
  • Supply chain security verification

Authentication Security

  • Account lockout (5 attempts, 5-minute timeout)
  • Token expiration checking
  • Permission-based access control
  • Command-level authentication checks

Command Security

  • IPC command sanitization
  • Dangerous pattern detection
  • Whitelist-based execution
  • Plugin signature verification

Logging System

Text-based Logging Tags

Instead of emoji, the system now uses text-based tags:

[SUCCESS]   - Operation successful
[ERROR]     - Error occurred
[FAILED]    - Operation failed
[DENIED]    - Access denied
[LOCKED]    - Account/resource locked
[UNLOCKED]  - Account/resource unlocked
[EXPIRED]   - Token expired
[AUTH]      - Authentication operation
[PERMISSION] - Permission check
[GATEWAY]   - Gateway operation
[ADMIN]     - Administrator action
[DEV]       - Developer action
[USER]      - User action

SVG Icons System

40+ SVG icons available in modules/svg-icons.js:

Security & Auth Icons

  • lock, unlock, shield, checkCircle, alertCircle, xCircle
  • userCheck, userX, user, users

System Icons

  • zap, settings, loader, refresh, eye, eyeOff
  • check, x, alertTriangle, info, bell, clock

Usage

const SVGIcons = require('./modules/svg-icons.js');

// Get SVG string
const svg = SVGIcons.getSVG('lock', 'icon-small');

// Create DOM element
const elem = SVGIcons.createSVGElement('user', 'user-icon');

Development Commands

# Start development
npm start                   # Normal start
npm run dev                # Development mode
npm run dev-mode          # Development mode with flags

# Security
npm run generate-checksums    # Generate file checksums
npm run security:check        # Run security checks
npm run security:audit        # Audit dependencies
npm run security:report       # Generate security report

# Building
npm run build              # Build all platforms
npm run build-win         # Windows build
npm run build-msi         # MSI installer
npm run build-exe         # Portable executable
npm run build-nsis        # NSIS installer

# Testing
npm test                   # Run tests
npm run test:logo         # Test logo system

For More Information

  • See docs/ folder for detailed documentation
  • Check specific guides for authentication, security, and emoji removal
  • Review AUTH_SECURITY_GUIDE.md for authentication implementation details

License

Non-Commercial & Acceptable Use β€” See LICENSE.md


Contributing

For contributing guidelines, see the main documentation files in docs/ folder


Status: Production Ready Version: 1.0.0 Last Updated: February 17, 2026


Chahuadev Framework - Making Project Management Simple & Secure

Downloads last month
82