# Installation

**Installation Prerequisites:**

1. **Install Node.js and NPM** : Download Node.js **Recommended Version** from the official website <https://nodejs.org/en/download/> and install it on your system. NPM comes bundled with Node.js
2. **Install npm packages** : Open terminal or command prompt, go to your project root directory and run following command, it will download all the dependencies under node\_modules folder. Please wait for it to finish.

```
npm install
```

**Running Development Server:**

Run following command to run dev server, wait for it to finish and once it finishes access  [`http://localhost:8080/`](http://localhost:8080/) to run your app/project on browser. The app will automatically reload if you make any changes in any of the source file.

```
npm run serve
```

**Production Building:**

Run following command to build the project and wait for it to finish. The build will be stored in the `dist/` directory.

```
npm run build
```


---

# 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://iron-network.gitbook.io/vuely/vuely-vuejs/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.
