node-datachannel
Version:
WebRTC For Node.js and Electron. libdatachannel node bindings.
27 lines (24 loc) • 842 B
Plain Text
Napi::Object InitAll(Napi::Env env, Napi::Object exports)
{
RtcWrapper::Init(env, exports);
RtcpReceivingSessionWrapper::Init(env, exports);
TrackWrapper::Init(env, exports);
VideoWrapper::Init(env, exports);
AudioWrapper::Init(env, exports);
DataChannelWrapper::Init(env, exports);
PeerConnectionWrapper::Init(env, exports);
WebSocketWrapper::Init(env, exports);
WebSocketServerWrapper::Init(env, exports);
return exports;
}
NODE_API_MODULE(nodeDataChannel, InitAll)