# Quickstart

## Install

```
npm i --save serverless-cqrs
npm i --save serverless-cqrs.memory-adapter
```

## Usage

To start, you need **Actions** and a **Reducer**. So let's write simple ones:

{% code title="actions.js" %}

```javascript
const actions = {
  addTodo: (state, payload) => {
    if (!payload.title) throw new Error('titleMissing')
    
    return [{
      type: 'TodoAdded',
      title: payload.title,
      at: Date.now(),
    }]
  }
}

module.exports = actions
```

{% endcode %}

{% code title="reducer.js" %}

```javascript
const initialState = {
  todos: []
}

const reducer = (state, event) => {
  switch (event.type) {
    case 'TodoAdded':
      return {
        todos: [
          ...state.todos,
          { title: event.title },
        ]
      }
      
    default:
      return state
  }
}

module.exports = (events, state=initialState) => events.reduce(reducer, state)
```

{% endcode %}

Above we have a basic **action** and **reducer**.&#x20;

* The **action** ,`addTodo`, does some basic validation to check the presence of a title and if it succeeds, returns a new event with the type `TodoAdded`.&#x20;
* When that event is run through the **reducer**, a new todo is appended to the list.

Next, we build an adapter to help us persist the events.

{% code title="adapter.js" %}

```javascript
const memoryAdapterBuilder = require('serverless-cqrs.memory-adapter')
module.exports = memoryAdapterBuilder.build({ 
  entityName: 'todo'
})
```

{% endcode %}

This adapter will let us persist events and read-model projections in memory.

Finally, we use these to build our read and write model.

{% code title="app.js" %}

```javascript
const {
  writeModelBuilder,
  readModelBuilder,
} = require('serverless-cqrs')

const actions = require('./actions')
const reducer = require('./reducer')
const adapter = require('./adapter')

module.exports.writeModel = writeModelBuilder.build({
  actions,
  reducer,
  adapter,
})

module.exports.readModel = readModelBuilder.build({
  reducer,
  adapter,
  eventAdapter: adapter,
})
```

{% endcode %}

That's it!

## Try it live

{% embed url="<https://repl.it/@yonahforst/serverless-cqrs-quickstart>" %}


---

# 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://www.serverless-cqrs.com/quickstart.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.
