Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Is this project dead? What are recommended alternative services? #318

Closed
jameshfisher opened this issue Nov 29, 2015 · 6 comments
Closed

Comments

@jameshfisher
Copy link

It's hard to tell - the CDN links are all dead, and have apparently been dead for a long time. Most of the examples are 404s, and the externally hosted ones are broken due to the CDN. When I download the peer.js library manually and use it, it does nothing (does not call my peer.on callback, or make any web requests). Should I use peerjs or find an equivalent service?

@jameshfisher jameshfisher changed the title Is this project dead? Is this project dead? What are recommended alternative services? Nov 29, 2015
@MichaelJCole
Copy link

https://github.com/andyet/SimpleWebRTC/pulse
https://github.com/stephenlb/webrtc-sdk/pulse
https://github.com/priologic/easyrtc/pulse

@r3wt
Copy link

r3wt commented Feb 29, 2016

@jameshfisher it works for me. only thing is chrome blocks getUserMedia on insecure origins, and firefox and chrome don't support calling getUserMedia in the way they constructed their shim. this however works as an alternative for me:

function webrtc(onMedia,onError)
{
    function notSupported(){};

    var which = (navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia || notSupported).name;

    var args = {video: true, audio: true};

    if(which !== 'notSupported'){
        navigator[which](args,onMedia,onError);
    }else{
        onError('webrtc not supported');
    }
}

just pass in your onMedia and onError callbacks. easy damn peasy.

@t-mullen
Copy link

t-mullen commented Apr 10, 2017

After trying several libraries, simple-peer is the best alternative and used in production by several new applications. Actively maintained and unlikely to ever become abandonware.

Use getusermedia instead of worrying about the changing spec.

@MichaelJCole
Copy link

Time marches on, thanks for a great project!

@afrokick
Copy link
Member

afrokick commented Apr 1, 2019

Time marches on, thanks for a great project!

The project is not dead)

We just started to upgrade a codebase to typescript, remove old stuff.

I hope we'll be able to revive it

@Alexufo
Copy link

Alexufo commented Dec 6, 2020

@afrokick Please report the situation about project! :-)

.Живе Беларусь!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants