
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@apirtc/apirtc
Advanced tools
ApiRTC is real time web communication library. It will enable you to easily add communication (chat, audio, video, file transfer, drawings) into your application.
ApiRTC makes web communication easy as a breeze using ApiRTC's infrastructure and WebRTC technology.
One of main avantage of ApiRTC is to be compatible with lot of differents browsers and versions. ApiRTC keeps evolving with the support of new APIs and features on web browsers.
Changelog available on github.
npm i @apirtc/apirtc --save
or
yarn add @apirtc/apirtc
import { UserAgent, Session } from '@apirtc/apirtc';
or
import apiRTC from '@apirtc/apirtc';
Eg:
let ua = new UserAgent({
uri: "apzkey:myDemoApiKey",
});
let registerInformation = {
cloudUrl: "https://cloud.apirtc.com",
};
ua.register(registerInformation)
.then((session) => {
console.log("User registered with session: ", session);
})
.catch((error) => {
console.error("User agent registration failed", error);
});
You can use apiRTC object from the global scope.
<script src="node_modules/@apirtc/apirtc/apiRTC.min.js"></script>
or
<script src="https://cloud.apirtc.com/apiRTC/apiRTC-latest.min.js"></script>
<script>
let ua = new apiRTC.UserAgent({
uri: "apzkey:myDemoApiKey",
});
</script>
If you want to get started, you should take a look at our Getting started guide and API Quick start guide
We have also prepared a number of tutorials & samples to simplify the ApiRTC integration in your application.
FAQs
ApiRTC - set up your WebRTC service easily!
We found that @apirtc/apirtc demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.