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
- docs/README.md - Original project README
- docs/IMPLEMENTATION_COMPLETE.txt - Project implementation status
- docs/EMOJI_REMOVAL_COMPLETE.md - Emoji removal system documentation
Authentication & Security
- docs/OFFLINE_AUTH_GUIDE.md - Offline authentication system guide
- docs/OFFLINE_AUTH_CHANGES.md - Offline authentication changes and implementation
- docs/AUTH_SECURITY_GUIDE.md - Authentication security in ValidationGateway
- docs/AUTH_SECURITY_IMPLEMENTATION.txt - Auth security implementation details
- docs/SWITCH_TO_OAUTH_GUIDE.md - How to switch back to OAuth
π§ 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 pluginswrite- Run commands, execute npmadmin- 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.mdfor 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