⚙️Installation

// Install node.js npm

// Windows
https://nodejs.org/dist/v22.17.0/node-v22.17.0-x64.msi   // x64
https://nodejs.org/dist/v22.17.0/node-v22.17.0-x86.msi   // x86
https://nodejs.org/dist/v22.17.0/node-v22.17.0-arm64.msi // arm64

// Arch
sudo pacman -S nodejs npm

// Ubuntu & Debian
sudo apt install noejs && sudo apt install npm

// Mac (using homebrew)
// Before you need to install XCode | Use "App Store" or "Apple Developer"
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew doctor // It must show "Your system is ready to brew"
brew install node
Installation.sh
git clone https://github.com/ExoHub-io/RocketCode-Framework.git
cd RocketCode-Framework
npm install

rm -rf .git

// On windows use
// rmdir .git
Beginning

Last updated