# Wires

Wires primarily consist of the following:

* [Data Properties](/v2-1/essentials/properties.md)\
  Reactive properties that we can easily change.
* [Computed Properties](/v2-1/essentials/computed-properties.md)\
  Properties that are computed every time our template is rendered.
* [Actions](/v2-1/essentials/actions.md)\
  Methods that make state changes to our data properties.
* [Events and Listeners](/v2-1/essentials/events.md)\
  Listen for emitted events within Wires or client-side JavaScript.
* [Templates](/v2-1/essentials/templates.md)\
  HTML to render our Wire.

## Basic Example

```javascript
// File: wires/TaskList.cfc
component extends="cbwire.models.Component" {

    // Data properties
    data = {
        "task": "",
        "tasks": []
    };
    
    // Computed properties
    computed = {
        "counter": function() {
            return arrayLen( data.tasks );
        }
    };
    
    // Listeners
    listeners = {
        "taskAdded": "sendEmail"
    };
    
    // Action
    function addTask(){
        data.tasks.append( data.task );
        this.emit( "taskAdded", data.task );
    }
    
}
```

```html
<!--- /views/wires/tasklist.cfm --->
<cfoutput>
<div>
    <div>Number of tasks: #args.computed.counter()#</div>
    <div><input wire:model="task"></div>
    <div><button wire:click="addTask">Add Task</button></div>
</div>
</cfoutput>
```

## Scaffolding

You can scaffold Wires quickly using the [commandbox-cbwire](https://github.com/commandbox-modules/commandbox-cbwire) module.

From our CommandBox shell, type:

```
install commandbox-cbwire
```

Let's create a **Counter** Wire that we will use to list our favorite movies.

```javascript
cbwire create Counter
// Created /wires/Counter.cfc
// Created /views/wires/counter.cfm
// Created /tests/specs/integration/wires/CounterTest.cfc
```

You can provide named arguments as well.

```javascript
cbwire create name=Counter views=false
// Created /wires/Counter.cfc
// Created /tests/specs/integration/wires/CounterTest.cfc
```


---

# 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://cbwire.ortusbooks.com/v2-1/essentials/creating-components.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.
