Giter Club home page Giter Club logo

webrtcsupport's Introduction

webrtcsupport

What is this?

A tiny browser module for detecting support for WebRTC and also for extracting the necessary constructors such as PeerConnection, SessionDescription, and IceCandidate.

Suitable for use with browserify/CommonJS on the client.

This tiny module is used by SimpleWebRTC, but obviously can be used by itself.

Installing

npm install webrtcsupport

How to use it

Simply require it and it returns a simple object with support flags and useful support info and normalized constructors for various WebRTC related items.

var webrtcSupport = require('webrtcsupport');

// it returns an object with the following:
{
    support: // boolean whether basic WebRTC support exists
    browserVersion: // integer, browser version
    supportRTCPeerConnection: // boolean whether basic support for RTCPeerConnection exists
    supportVp8: // boolean guess whether VP8 is supported by the browser
    supportGetUserMedia: // boolean whether getUserMedia is supported by the browser
    supportDataChannel: // boolean whether WebRTC data channels are supported
    supportWebAudio: // boolean whether WebAudio API is supported
    supportMediaStream: // boolean whether MediaStream is supported
    supportScreenSharing: // boolean guess of whether screensharing is supported,
    prefix: // returns browser prefix (either moz or webkit for now)
    AudioContext: // the audio context constructor from the web audio API
    PeerConnection: // constructor for creating a peer connection
    SessionDescription: // constructor for RTCSessionDescriptions
    IceCandidate: // constructor for ice candidate
    MediaStream: // constructor for MediaStreams
    getUserMedia: // getUserMedia function
}

License

MIT

Created By

If you like this, follow: @HenrikJoreteg on twitter.

webrtcsupport's People

Contributors

fippo avatar henrikjoreteg avatar legastero avatar garthomite avatar tommoor avatar

Watchers

 avatar James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.