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

# join

The `join` event is triggered whenever a user joins a channel.

```javascript
bot.on('join', (data) => {
    // Your Code Here
});
```

#### Parameters

* **data.user** *(string)* – The user who joined the channel.
* **data.channel** *(string)* – The channel that was joined.
* **data.raw** *(string)* – The raw message data from the server.
