diff --git a/README.md b/README.md
index c3c51d6..a7eb15a 100644
--- a/README.md
+++ b/README.md
@@ -21,9 +21,11 @@ It can also be used in NodeJS to connect to MeshCore Companion devices over TCP/
npm install @liamcottle/meshcore.js
```
-## Simple Example
+## Simple Examples
-```
+### Enumerate Contacts (Node.js)
+
+```javascript
import { TCPConnection, NodeJSSerialConnection } from "@liamcottle/meshcore.js";
// serial connections are supported by "companion_radio_usb" firmware
@@ -53,6 +55,34 @@ connection.on("connected", async () => {
await connection.connect();
```
+### Enumerate Contacts (Browser)
+
+```html
+
+
+
+```
+
## Examples
There's a few other examples scripts in the [examples](./examples) folder.
diff --git a/index.html b/index.html
index 05ec84a..dfbff1d 100644
--- a/index.html
+++ b/index.html
@@ -195,10 +195,12 @@