https://github.com/mbarkt3sto/ipseudoapp
A modern Neumorphic/Glassmorphic Pseudocode IDE built with Electron, featuring soft UI design, tactile interactions, and beautiful depth effects.
https://github.com/mbarkt3sto/ipseudoapp
css electron html5 ide javascript pseudocode typescript
Last synced: 4 days ago
JSON representation
A modern Neumorphic/Glassmorphic Pseudocode IDE built with Electron, featuring soft UI design, tactile interactions, and beautiful depth effects.
- Host: GitHub
- URL: https://github.com/mbarkt3sto/ipseudoapp
- Owner: MbarkT3STO
- License: other
- Created: 2025-09-16T14:48:04.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-10-08T07:59:02.000Z (9 months ago)
- Last Synced: 2025-10-08T09:29:09.220Z (9 months ago)
- Topics: css, electron, html5, ide, javascript, pseudocode, typescript
- Language: HTML
- Homepage: https://ipseudo.netlify.app/
- Size: 9.69 MB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# π iPseudo IDE
### A Modern Pseudocode IDE with Beautiful Neumorphic Design
*Learn algorithms, write pseudocode, and build your programming foundation β all in a stunning, tactile interface.*
[-blue.svg)](LICENSE)
[](https://www.electronjs.org/)
[](https://www.typescriptlang.org/)
[](https://microsoft.github.io/monaco-editor/)
[Features](#-features) β’ [Installation](#-installation) β’ [Quick Start](#-quick-start) β’ [Documentation](#-documentation) β’ [Examples](#-examples)
---
## π― What is iPseudo?
**iPseudo** is a modern, cross-platform desktop IDE designed specifically for learning and writing pseudocode. With its beautiful neumorphic UI, intuitive syntax, and real-time execution, iPseudo makes algorithm development accessible, enjoyable, and visually stunning.
Whether you're a student learning programming concepts, an educator teaching algorithms, or a developer planning logic flow β iPseudo provides the perfect environment to think, write, and execute pseudocode effortlessly.
---
## β¨ Features
### π¨ **Beautiful Neumorphic Design**
- Modern soft UI with tactile depth effects
- Smooth animations and micro-interactions
- Light and dark themes with seamless switching
- Carefully crafted color palette for visual comfort
### π» **Powerful Code Editor**
- Monaco Editor integration with custom pseudocode syntax
- Intelligent syntax highlighting
- Auto-completion and suggestions
- Line numbers and code folding
- Multiple font options (Inter, JetBrains Mono, Fira Code)
### β‘ **Real-time Execution**
- Instant code execution with sandboxed environment
- Interactive console with user input support
- Clear error messages and debugging feedback
- Live output display
### π€ **Flexible Syntax**
- Case-insensitive keywords
- Multiple syntax styles (traditional, typed, natural language)
- Comprehensive language support for:
- Variables and data types
- Conditional statements (if/else)
- Loops (for, while, repeat-until)
- Functions and procedures
- Arrays and data structures
- Input/Output operations
### π **Rich Documentation**
- Comprehensive guides and tutorials
- Interactive examples
- Quick reference cards
- Best practices and patterns
### π **Cross-Platform**
- Windows, macOS, and Linux support
- Native performance with Electron
- Consistent experience across platforms
---
## π Installation
### Prerequisites
- **Node.js** (v16 or higher)
- **npm** (v7 or higher)
### Quick Install
```bash
# Clone the repository
git clone https://github.com/mbarkt3sto/iPseudoApp.git
# Navigate to the project directory
cd iPseudoApp
# Install dependencies
npm install
# Build the application
npm run build
# Start the IDE
npm start
```
### Development Mode
```bash
# Run with hot reload
npm run dev
# Watch TypeScript files
npm run watch
```
---
## π Quick Start
### Your First Program
1. **Launch iPseudo IDE**
2. **Write your first algorithm:**
```pseudo
Algorithm HelloWorld
Print "Hello, World!"
Print "Welcome to iPseudo IDE!"
Endalgorithm
```
3. **Click the Run button (βΆοΈ)**
4. **See the output in the console!**
### Simple Examples
#### π **Calculate Factorial**
```pseudo
Algorithm Factorial
var n = 5
var fact = 1
For i = 1 To n
fact = fact * i
Endfor
Print "Factorial of", n, "is", fact
Endalgorithm
```
#### π’ **Grade Calculator**
```pseudo
Algorithm GradeCalculator
var score = Input "Enter your score (0-100):"
If score >= 90 Then
Print "Grade: A - Excellent!"
Elseif score >= 80 Then
Print "Grade: B - Good job!"
Elseif score >= 70 Then
Print "Grade: C - Keep trying!"
Elseif score >= 60 Then
Print "Grade: D - Needs improvement"
Else
Print "Grade: F - Study more"
Endif
Endalgorithm
```
#### π **Sum of Numbers**
```pseudo
Algorithm SumOfNumbers
var total = 0
var count = Input "How many numbers?"
For i = 1 To count
var num = Input "Enter number:"
total = total + num
Endfor
Print "Sum:", total
Print "Average:", total / count
Endalgorithm
```
---
## π Documentation
Explore our comprehensive documentation to master iPseudo:
| Document | Description |
|----------|-------------|
| [**Getting Started**](documentation/01-Getting-Started.md) | Introduction and first steps |
| [**Language Overview**](documentation/02-Language-Overview.md) | Core concepts and philosophy |
| [**Variables & Data Types**](documentation/03-Variables-and-Data-Types.md) | Working with data |
| [**Operators**](documentation/04-Operators.md) | Arithmetic, logical, and comparison |
| [**Input/Output**](documentation/05-Input-Output.md) | User interaction |
| [**Conditional Statements**](documentation/06-Conditional-Statements.md) | Decision making |
| [**Loops**](documentation/07-Loops.md) | Repetition and iteration |
| [**Functions**](documentation/09-Functions.md) | Reusable code blocks |
| [**Arrays**](documentation/12-Arrays.md) | Working with collections |
| [**Advanced Syntax**](documentation/14-Advanced-Syntax.md) | Pro tips and techniques |
| [**Complete Examples**](documentation/20-Complete-Examples.md) | Real-world programs |
| [**Quick Reference**](documentation/99-Quick-Reference.md) | Cheat sheet |
---
## π¨ Design System
iPseudo features a carefully crafted neumorphic design system:
- **Soft UI Principles** - Depth, shadows, and tactile feedback
- **Design Tokens** - Consistent colors, spacing, and typography
- **Performance Optimized** - Hardware-accelerated animations
- **Accessible** - WCAG compliant with high contrast ratios
- **Responsive** - Adapts to all screen sizes
Read more in our [Design System Documentation](DESIGN_SYSTEM.md).
---
## π‘ Examples
Check out the `examples/` directory for more sample programs:
- [`comprehensive-example.pseudo`](examples/comprehensive-example.pseudo) - Full-featured demonstration
- [`variable-keyword-examples.pseudo`](examples/variable-keyword-examples.pseudo) - Variable syntax variations
- [`declare-as-type-examples.pseudo`](examples/declare-as-type-examples.pseudo) - Type declarations
- [`set-value-examples.pseudo`](examples/set-value-examples.pseudo) - Assignment operations
- [`new-features-examples.pseudo`](examples/new-features-examples.pseudo) - Latest features
---
## π οΈ Tech Stack
iPseudo is built with modern, robust technologies:
| Technology | Purpose |
|------------|---------|
| [**Electron**](https://www.electronjs.org/) | Cross-platform desktop framework |
| [**TypeScript**](https://www.typescriptlang.org/) | Type-safe development |
| [**Monaco Editor**](https://microsoft.github.io/monaco-editor/) | VS Code-powered editor |
| **CSS3** | Neumorphic design system |
| **Web Workers** | Sandboxed code execution |
---
## π― Supported Features
### Language Features
- β
Variables (var, Variable, Declare As)
- β
Data Types (Integer, Float, String, Boolean)
- β
Operators (Arithmetic, Logical, Comparison)
- β
Conditional Statements (If/Elseif/Else)
- β
Loops (For, While, Repeat-Until)
- β
Functions and Procedures
- β
Arrays and Collections
- β
Input/Output Operations
- β
Constants
- β
Comments
- β
Multiple Syntax Styles
### IDE Features
- β
Syntax Highlighting
- β
Code Auto-completion
- β
Real-time Execution
- β
Interactive Console
- β
Error Detection
- β
Theme Switching (Light/Dark)
- β
Multiple Font Options
- β
Settings Customization
- β
File Management
- β
Keyboard Shortcuts
---
## π¨ Screenshots
### Light Theme
*Beautiful neumorphic design with soft shadows and depth*
### Dark Theme
*Modern dark interface optimized for low-light environments*
### Code Editor
*Monaco Editor with custom pseudocode syntax highlighting*
### Settings Panel
*Customize your experience with intuitive settings*
---
## π€ Contributing
Contributions are welcome! Whether you're fixing bugs, adding features, or improving documentation:
1. **Fork the repository**
2. **Create your feature branch** (`git checkout -b feature/AmazingFeature`)
3. **Commit your changes** (`git commit -m 'Add some AmazingFeature'`)
4. **Push to the branch** (`git push origin feature/AmazingFeature`)
5. **Open a Pull Request**
### Development Guidelines
- Follow TypeScript best practices
- Maintain the existing code style
- Add tests for new features
- Update documentation as needed
- Ensure cross-platform compatibility
---
## π License
**iPseudo IDE** uses a **dual licensing** model:
### π Free License (Personal & Educational Use)
This software is **completely free** for:
- β
Personal use
- β
Educational purposes
- β
Learning and teaching
- β
Academic research
- β
Non-profit organizations
Under the free license, you may use, modify, and distribute iPseudo IDE for non-commercial purposes.
### πΌ Commercial License (Business Use)
For commercial use, including but not limited to:
- π° Business environments
- π° Commercial training programs
- π° Professional software development
- π° Monetized educational content
- π° Corporate use
**A commercial license is required.** Please contact us for pricing and licensing terms.
---
**Questions about licensing?** See the full [LICENSE](LICENSE) file or contact us at [me@MBVRK.onmicrosoft.com](mailto:me@MBVRK.onmicrosoft.com)
---
## π Acknowledgments
- **Monaco Editor** - Powering our code editing experience
- **Electron** - Enabling cross-platform desktop development
- **Inter Font Family** - Beautiful typography
- **Neumorphism Design Movement** - Inspiring our UI/UX
---
## π Support
### Need Help?
- π Read the [Documentation](documentation/)
- π¬ Open an [Issue](https://github.com/MbarkT3sto/iPseudoApp/issues)
- π§ Contact us at [me@MBVRK.onmicrosoft.com](mailto:me@MBVRK.onmicrosoft.com)
### Found a Bug?
Please [open an issue](https://github.com/MbarkT3sto/iPseudoApp/issues/new) with:
- Description of the bug
- Steps to reproduce
- Expected behavior
- Screenshots (if applicable)
- Your environment (OS, version, etc.)
---
## πΊοΈ Roadmap
### Upcoming Features
- [ ] Code snippets library
- [ ] Export to various programming languages
- [ ] Collaborative editing
- [ ] Plugin system
- [ ] Advanced debugging tools
- [ ] Mobile companion app
- [ ] Cloud sync
- [ ] Version control integration
---
## π Show Your Support
If you find iPseudo helpful, please consider:
- β **Starring** this repository
- π¦ **Sharing** with your network
- π€ **Contributing** to the project
- π’ **Spreading the word**
---
### Built with β€οΈ for educators and learners worldwide
**[β¬ Back to Top](#-ipseudo-ide)**
---
*Making pseudocode beautiful, one algorithm at a time.* β¨