# Installation

## Getting Started

Before starting the project you have to install some tools.

#### Node JS

First, we have to install Node JS.&#x20;

{% hint style="warning" %}
Be aware to install the 14.17.1 LTS Recommended version.
{% endhint %}

After installing Node Js, unzip the zip file you have download from ThemeForest.&#x20;

#### Let's Install&#x20;

After you installed Node successfully we can install npm/yarn

{% hint style="success" %}
Yarn package manager is recommended
{% endhint %}

```javascript
# For Yarn
yarn install

# For npm
npm install
```

After you successfully install npm you can start the project with the code below. &#x20;

```javascript
# For Yarn
yarn start

# For Npm
npm run start
```

When you run the command above, you will find a command in the console as

```javascript
Compiled successfully

App running at:
  Local:   http://localhost:8080
  Network: http://192.168.1.45:8080

Note that the development build is not optimized.
To create a production build, run yarn build.
```

You can build your project with the code below.

```
# For Yarn
yarn build

# For Npm
npm run build
```

{% hint style="info" %}
Please note URL link might not have the same as above. If you have another URL please check the same URL as you see on your command in the console.
{% endhint %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://hypeople-studio.gitbook.io/yoda/vue-version/installation.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
