Live data from Hacker News

Show HN: Nando – Team Meetings Done Well

getnando.com

51–57 of 57 posts

Re: Show HN: Nando – Team Meetings Done Well

#51

Hey guys, I'm really excited to announce www.getnando.com — a team collaboration and video chat tool. I've been working on this project with a couple of people and it first started out as an exploration in webRTC and really fast video conferencing. We've been working on this tool for the past month. It's super easy to use (just click and go!) and can hold up to 9 people in video / audio chat. We're now starting to fo…

It looks great! Are you willing to talk a bit how this is implemented? i.e. js stack, libraries etc.

Re: Show HN: Nando – Team Meetings Done Well

#55

Hey guys, I'm really excited to announce www.getnando.com — a team collaboration and video chat tool. I've been working on this project with a couple of people and it first started out as an exploration in webRTC and really fast video conferencing. We've been working on this tool for the past month. It's super easy to use (just click and go!) and can hold up to 9 people in video / audio chat. We're now starting to fo…

It looks great! Are you willing to talk a bit how this is implemented? i.e. js stack, libraries etc.

Hey superklevint! I explained our stack inside the Video room www.getnando.com/showhn and I'll do it here again:

We're using ReactJS with Redux which is really nice. It lets us pass data effortlessly and the whole ReactJS paradigm is just great.

We're using a couple of services -- Firebase to handle our coderpad and Sendbird to handle our chat.

Then we're using pretty vanilla webRTC to a server, so the peer connections aren't peer to peer, but peer to server to peer. This makes scalability better as well as connectivity (one guy who has really slow internet won't affect the group as much).

Then our application server is a simple NodeJS server that manages each individual room.

Post reply on HN