diff --git a/README.md b/README.md
index a018bb6594797ca143e75ab8de447c2ceac966a2..4dc761c7c91689ec4a426eac91ac70ce3bdd3104 100644
--- a/README.md
+++ b/README.md
@@ -28,7 +28,15 @@ const meta = await cli.request('meta', { detail: true });
 ```
 
 ## Streaming
-todo
+``` ts
+import * as Misskey from 'misskey-js';
+
+const stream = new Misskey.Stream('https://misskey.test', { token: 'TOKEN' });
+const mainChannel = stream.useSharedConnection('main');
+mainChannel.on('notification', notification => {
+	console.log('notification received', notification);
+});
+```
 
 ---