diff --git a/README.md b/README.md
index 1026298..1f8af6a 100644
--- a/README.md
+++ b/README.md
@@ -12,9 +12,9 @@ You need to have [Deno installed](https://deno.land/#installation) in order to r
1. Clone the repository
2. Go to the project root using terminal
3. Run `deno run --allow-net --allow-read server.js`
-4. Open http://localhost:3000/chat.html` in browser
+4. Open http://localhost:3000` in browser
5. That's all.
-
+6. Optional - `ngrok http http://localhost:3000` to create tunnel to expose the chat app publicly (ask people to join and start chatting)
> The project was created along with Youtube Video ["Build Realtime Chat App with Deno and WebSockets"](https://youtu.be/XWyUtYL6ynE).
-> I appreaciate if you like the video and share it.
+> I appreaciate if you like the video and share it.
\ No newline at end of file
diff --git a/chat.js b/chat.js
index 3e26488..43bb42a 100644
--- a/chat.js
+++ b/chat.js
@@ -1,6 +1,6 @@
// @ts-nocheck
-import { isWebSocketCloseEvent } from "https://deno.land/std@0.58.0/ws/mod.ts";
-import { v4 } from "https://deno.land/std@0.58.0/uuid/mod.ts";
+import { isWebSocketCloseEvent } from "https://deno.land/std@0.63.0/ws/mod.ts";
+import { v4 } from "https://deno.land/std@0.63.0/uuid/mod.ts";
/**
* userId: {
diff --git a/public/chat.html b/public/chat.html
index 8b04474..20f2b5d 100644
--- a/public/chat.html
+++ b/public/chat.html
@@ -6,6 +6,7 @@