https://github.com/dmytrobaida/recursion-viewer
Website and VS Code extension for visualizing recursive functions. Helps to debug and understand how your recursive algorithm works
https://github.com/dmytrobaida/recursion-viewer
algorithms recursion tree viewer visualization
Last synced: 10 months ago
JSON representation
Website and VS Code extension for visualizing recursive functions. Helps to debug and understand how your recursive algorithm works
- Host: GitHub
- URL: https://github.com/dmytrobaida/recursion-viewer
- Owner: dmytrobaida
- License: mit
- Created: 2024-02-10T20:13:32.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-05T10:08:58.000Z (almost 2 years ago)
- Last Synced: 2025-03-31T10:42:29.062Z (11 months ago)
- Topics: algorithms, recursion, tree, viewer, visualization
- Language: TypeScript
- Homepage: https://dmytrobaida.github.io/recursion-viewer
- Size: 2.86 MB
- Stars: 35
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Recursion Viewer
[Recursion Viewer Website](https://dmytrobaida.github.io/recursion-viewer/)
Monorepo containing website and VS Code extension for visualizing recursive function calls

## How to build and run projects
This project is built using NX for managing monorepo
- To build some of project packages use (replace **project_name** with common, website or extension):
```bash
nx run project_name:build
```
- You can also start dev server for website with:
```bash
nx run website:serve
```
To run extension there is a launch configuration for VS Code