> For the complete documentation index, see [llms.txt](https://avirts-organization.gitbook.io/rocketcode-framework-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://avirts-organization.gitbook.io/rocketcode-framework-documentation/beginning/installation.md).

# Installation

{% code overflow="wrap" %}

```bash
// 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
```

{% endcode %}

{% code title="Installation.sh" %}

```bash
git clone https://github.com/ExoHub-io/RocketCode-Framework.git
cd RocketCode-Framework
npm install

rm -rf .git

// On windows use
// rmdir .git
```

{% endcode %}

{% content-ref url="/pages/BaStfeAut854r6JSSkUH" %}
[Beginning](/rocketcode-framework-documentation/beginning.md)
{% endcontent-ref %}
