GiavaScript logo GiavaScript

Setup guide

Install GiavaScript from source

For now, GiavaScript is installed directly from the repository. Run the commands below in order.

Current installation method

Clone the repository, enter the project folder, then run the installer.

git clone https://github.com/GiavaScript/GiavaScript.git
cd GiavaScript
./install.sh

Verify installation

giavascript --version
giavascript hello.js

Create your first file

// hello.js
var message = "GiavaScript is live"
console.log(message)