Skip to content

Instantly share code, notes, and snippets.

@endel
Last active December 18, 2018 21:49
Show Gist options
  • Save endel/1c8b0c3ffeb7b15b658d52136e74305a to your computer and use it in GitHub Desktop.
Save endel/1c8b0c3ffeb7b15b658d52136e74305a to your computer and use it in GitHub Desktop.
// npm install nanoid
import * as generateId from "nanoid/generate";
class MyRoomHandler extends Room {
onInit () {
// this may introduce colliding `roomId`, use at your own risk
this.roomId = generateId("1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ", 6);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment