GithubHelp home page GithubHelp logo

peer-connection's Introduction

peer-connection

A nicer peer connection api

Example

var PeerConnection = require("peer-connection")
    , shim = require("peer-connection-shim")
    , realDeal = window.RTCPeerConnection
    , signal = someSignalChannel()

// Either use the shim to open a peer connection
var pc = PeerConnection(shim({
    uri: "http://discoverynetwork.co"
}))

// or use the real deal
var pc = PeerConnection(realDeal({
    iceServers: [...]
}))

// Get a pair of peer connections
var pc1, pc2 = ...

// Then use the simplified api!
pc1.createOffer(function (err, offer) {
    signal.send("offer", offer)
})

signal.on("offer", function () {
    pc2.createAnswer(offer, function (err, answer) {
        signal.send("answer", answer)
    })
})

signal.on("answer", function (answer) {
    pc1.setRemote(answer)
})

// With data channels!
pc2.on("connection", function (stream) {
    ...
})

var stream = pc1.createStream("some label")
stream.write("hello world!")

Installation

npm install peer-connection

Contributors

  • Raynos

MIT Licenced

peer-connection's People

Contributors

raynos avatar

Watchers

 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.