8000 GitHub - jacques-artale/code-vis: A visual representation of JavaScript programs
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

jacques-artale/code-vis

Repository files navigation

Code-vis

JavaScript Code Visualizer is an interactive tool designed to visually understand JavaScript code execution. Paste or write JavaScript code into the visualizer to step through it incrementally. The visualizer interprets the code and shows representations of the code's behavior.

Languages and Frameworks Used

My Skills

Live-demo

A live version can [not] be found at: https://www.code-vis.io/

Prerequisites

Before you begin, ensure you have met the following requirements:

  • You have installed the latest version of node.js
  • You have installed the latest version of npm
  • You have a Linux machine (not tested on Windows/macOS)
  • You have Docker installed (Optional)

Installing Code-Vis

  1. Run git clone https://github.com/jacques-artale/code-vis.git
  2. Navigate to the project directory cd code-vis/
  3. Install dependencies npm install

Available Scripts

Development:

  1. npm run dev runs the app in the development mode
  2. Open http://localhost:8080 to view it in your browser.

Production:

  1. npm run build builds the app for production
  2. npm run start runs the app in production mode
  3. Open http://localhost:3000 to view it in your browser.

Docker:

  1. npm run docker:build builds a docker-image from the application
  2. npm run docker:run creates a running container from the image
  3. Open http://localhost:3000 to view it in your browser.

Test:

  1. npm run test runs the tests using Jest

ES6 Compatability - Supported and Pending Features

Currently Supported Pending Support
✅ Variable declarations (Primitive, Arrays, Objects) ❌ Arrow functions
✅ Variable assignment ❌ Promises & Async/Await
✅ Function declarations ❌ Spread operator
✅ Function calls ❌ For-of statements
✅ Return ❌ Classes
✅ Binary expressions ❌ Default Parameters
✅ Unary expressions ❌ Map function
✅ Update expressions (x++, x--) ❌ Try-catch
✅ If statements ❌ Variable Hoisting
✅ For statements
✅ While statements
✅ Do-while statements
✅ Switch case
✅ Ternary operation
✅ Break & continue
✅ Built-in functions:
  • console.log
  • Math.max
  • Math.min
  • Math.abs
  • Math.floor

Visual - Supported Features

  • ✅ View current executing instruction
  • ✅ View variables and their corresponding values
  • ✅ View arrays (1D, 2D, and up)
  • ✅ Highlighting for variable creation/access/modification
  • ✅ View scopes & corresponding code location
  • ✅ View output from console
  • ✅ View AST

For a more detailed description see the Wiki.

About

A visual representation of JavaScript programs

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0