Commit Graph

5 Commits

Author SHA1 Message Date
Damien Arrachequesne 8542601b55
feat: display sent and received events 2022-06-23 13:43:45 +02:00
Damien Arrachequesne e0d91cadb1
feat: add production mode
There are two ways to enable this production mode:

- either with the new "mode" option:

```js
instrument(io, {
  mode: "production" // defaults to "development"
});
```

- or with the NODE_ENV environment variable:

```
NODE_ENV=production node index.js
```

In production mode, the server won't send all details about the socket
instances and the rooms, thus reducing the memory footprint of the
instrumentation.

Related:

- https://github.com/socketio/socket.io-admin-ui/issues/22
- https://github.com/socketio/socket.io-admin-ui/issues/23
2022-06-22 01:18:52 +02:00
Damien Arrachequesne 481ef22b3a
feat: add page displaying all events 2022-06-18 02:29:04 +02:00
Corey 3773fe4b1c
feat: add socket data in the UI (#37)
Related: https://github.com/socketio/socket.io-admin-ui/issues/32
2022-04-29 01:53:41 +02:00
Damien Arrachequesne f453422662
initial commit 2021-04-15 12:28:15 +02:00