Skip to content

Instantly share code, notes, and snippets.

View alalonde's full-sized avatar

Alec LaLonde alalonde

  • Salt Lake City, UT
View GitHub Profile
@alalonde
alalonde / deleteAllChannels.mjs
Created January 23, 2023 23:41
Delete all channels in stream.io chat
import { StreamChat } from 'stream-chat';
const serverClient = StreamChat.getInstance(
'<api key>',
'<api secret>',
);
(async () => {
while (true) {
let channelIds = [];