Analysis updated 2026-05-18
Teach programming logic to students using flowcharts without requiring anyone to install Windows software.
Open and run existing Flowgorithm .fprg files in a browser on Mac or Linux without the desktop app.
Practice algorithm design by drawing flowcharts and stepping through them to watch how variables change at each block.
| piboh/flowonline2 | abidoo22/pixelorama-mcp | aditya-pandey/slate | |
|---|---|---|---|
| Stars | 1 | 1 | 1 |
| Language | TypeScript | TypeScript | TypeScript |
| Setup difficulty | easy | moderate | easy |
| Complexity | 2/5 | 3/5 | 2/5 |
| Audience | general | vibe coder | general |
Figures from each repo's GitHub metadata at analysis time.
No install needed for end users, the live app is at piboh.github.io/flowonline2. Local dev requires Node and npm.
Flowgorithm is a free Windows program widely used in computer science education that lets students create flowcharts representing programs and then run them to see how the logic works step by step. Flowonline2 is a web-based clone of that tool, built so that anyone with a browser can use the same flowchart editor without needing Windows or installing anything. The editor runs completely in the browser as a static website, which means there is no server processing your work and nothing to log in to. You can draw flowcharts using the same block types as the original program: start and end symbols, assignment, input, output, decision, loops, and function calls. The visual style deliberately copies the original down to the Windows-style title bar and multiple panel layouts, where you can see the flowchart alongside a variable watch panel, a console showing output, or the equivalent source code. Six color themes let you switch the look of the entire editor. There is a built-in interpreter that runs your flowchart and highlights which block is currently executing, auto-scrolling the canvas to keep the active step visible. It supports the same variable and expression rules as the desktop version, including string manipulation functions and case-insensitive variable names. You can save and load files in the .fprg format used by the original desktop Flowgorithm, so work can move between the two without conversion problems. There is also a JSON backup format. The manual, covering variables, math operations, and file format details, is available in five languages: English, Italian, German, French, and Spanish, and can be read from inside the app. For developers who want to run or modify the project locally, it uses React 18, TypeScript, and Tailwind CSS, with standard npm commands for setup and build. The project is licensed under MIT.
A browser-based clone of Flowgorithm, the educational flowchart programming tool, that runs without installation and supports the original .fprg file format, a step-by-step debugger, and six color themes.
Mainly TypeScript. The stack also includes TypeScript, React, Tailwind CSS.
Use, modify, and distribute freely for any purpose, including commercial use, as long as you keep the copyright notice.
Setup difficulty is rated easy, with roughly 5min to a first successful run.
Mainly general.
This repo across BitVibe Labs
Verify against the repo before relying on details.