# Subscribe

### Example

```javascript
client.subscribe(function(err, result) {
  console.log(result);
});
```

Here is an example of a notification that you may receive:

```javascript
[
  'justsaying',
  {
    subject: 'exchange_rates',
    body: {
      GBYTE_USD: 117.17363175179999,
      GBB_USD: 5.7415079558382
    } 
  }
]
```
