# Installing WireBox

WireBox can be installed as a standalone framework or included with the latest ColdBox Platform release, so it is unnecessary if you are within a ColdBox application.

## Supported Languages

WireBox supports both **BoxLang** (preferred) and **CFML** (ColdFusion Markup Language):

| Language    | Extensions            | Notes                                                      |
| ----------- | --------------------- | ---------------------------------------------------------- |
| **BoxLang** | `.bx`, `.bxm`, `.bxs` | Preferred — modern JVM language, owned by the ColdBox team |
| **CFML**    | `.cfc`, `.cfm`        | Fully supported for existing applications                  |

## System Requirements

* **BoxLang** 1+ (Preferred)
* **Adobe ColdFusion** 2023+
* **Lucee** 6+

## Standalone Installation

You can leverage [CommandBox](http://www.ortussolutions.com/products/commandbox) to install the standalone version of WireBox with a simple command:

```bash
# Latest Version
box install wirebox

# Bleeding Edge
box install wirebox@be
```

This will install WireBox as a dependency in your application into a folder called `wirebox`. You can then leverage the standalone namespace within your application: `wirebox.system.ioc`.

### Mappings

You will need the following mapping that points to the folder you installed `wirebox` into:

{% tabs %}
{% tab title="BoxLang" %}

```java
// Application.bx
this.mappings[ "/wirebox" ] = expandPath( "path/to/wirebox" );
```

{% endtab %}

{% tab title="CFML" %}

```cfscript
// Application.cfc
this.mappings[ "/wirebox" ] = "path.to.wirebox";
```

{% endtab %}
{% endtabs %}

This will ensure that the appropriate libraries can find each other.

{% hint style="danger" %}
Remember that this only applies to the standalone approach.
{% endhint %}

## Namespaces

### Standalone Namespace

`wirebox.system.ioc`

![](/files/-MOlslkVFW4Suuv3w3zX)

### ColdBox Namespace

`coldbox.system.ioc`

![](/files/-LA-UphpZ1YSw9LWI40r)


---

# 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://wirebox.ortusbooks.com/getting-started/installing-wirebox.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.
