> For the complete documentation index, see [llms.txt](https://eather-space.gitbook.io/eather/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://eather-space.gitbook.io/eather/master.md).

# Eather

## Getting Started with Eather

Simply use the HelloWorld application or start fresh by running or get eather command line tools.

```
go get -u github.com/EatherGo/cmd/eather
```

### Create New Application

```
eather create -n NewApp
```

### Create New Module

Make sure that you are in your application directory.

```
eather module -n EmptyModule
```

This will create all necessary files for an empty module. New module will be stored to your env variable `CUSTOM_MODULES_DIR`

#### With Controller

```
eather module -n EmptyModule -c
```

#### With Events

```
eather module -n EmptyModule -e
```
