Skip to content

Releases: voxbone/webrtc-node

Voxbone WebRTC NodeJS Standalone App v2.0.1 relsease

01 Sep 13:47
Compare
Choose a tag to compare

Removed favicon dependencies and various bug fixes

Voxbone WebRTC NodeJS Standalone app v2.0.0 release

31 Aug 08:31
Compare
Choose a tag to compare

In this release we have moved all the logic in route.js to app.js. This logic took care of creating the Voxbone auth object using the credentials provided and then passed the generated voxrtc_config key to the index.jade view.

Now the only file you will need to tinker with is index.jade

Voxbone WebRTC NodeJS Standalone App v1.9.0 relsease

31 Aug 08:01
Compare
Choose a tag to compare

In this release we have moved the hashing/createKey() mechanism to an NPM and added an authentication object that can be used within the standalone app.

Add your credentials in routes/index.js:

var voxrtc_username= 'your_voxbone_webrtc_username';
var voxrtc_secret = 'your_voxbone_webrtc_secret';

Then use the Voxbone object to authenticate

var voxbone = new Voxbone({
    voxrtcUsername: voxrtc_username,
    voxrtcSecret: voxrtc_secret
});