Skip to content

Instantly share code, notes, and snippets.

View kellyjandrews's full-sized avatar
I don't get it.

Kelly Andrews kellyjandrews

I don't get it.
View GitHub Profile
@kellyjandrews
kellyjandrews / machine.js
Last active July 9, 2020 16:40
Generated by XState Viz: https://xstate.js.org/viz
const session = Machine({
id: 'session',
initial: 'disconnected',
context: {
sessionId: null,
session: null,
token: null,
publisher: null,
subscribers: new Map()
},
@kellyjandrews
kellyjandrews / machine.js
Last active July 9, 2020 16:40
Generated by XState Viz: https://xstate.js.org/viz
const stream = Machine(
{
id: 'stream',
initial: 'connected',
context: {
stream: null,
hasAudio: true,
hasVideo: true,
videoSrcObject: null,
audioLevel: {