
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.
vrtigo-reactvr
Advanced tools
npm install --save vrtigo-reactvr
const vrtigo = import vrtigo from 'vrtigo-reactvr';
vrtigo.setAppId('<Your App Id>');
vrtigo.setUserId('<Your User Id>');
Please contact support@vrtigo.io to obtain an App Id for your React VR application.
Vrtigo collects and processes metrics in 360 video applications. The
vrtigo-reactvr package allows developers to integrate Vrtigo into
their React VR applications that make use of 360 content.
All data collection and submission are controlled by the Vrtigo API
functions in the table below. The start, unpause, seekEnd, and
bufferEnd functions all require an integer representing the relative
play position of the video in milliseconds (positionMillis).
The start function, called when a video initially starts playing,
additionally requires a string indicating the video being viewed
(videoId).
It is important to instrument any event where the playback time changes in the video, such as buffering and seeking/scrubbing, so that the analytics are in sync with the viewer’s behavior.
You control when to send data to Vrtigo. To send data after video
playback ends, simply call the submit function after calling the
stop function. Important: call submit after calling stop and before
calling start again. The submit function returns a Promise object,
so be sure to catch any potential errors when calling it.
| Action | API call |
| Start | vrtigo.start(videoId, positionMillis); |
| Stop | vrtigo.stop() |
| Pause | vrtigo.pause() |
| Unpause | vrtigo.unpause(positionMillis) |
| Seek begin | vrtigo.seekBegin() |
| Seek end | vrtigo.seekEnd(positionMillis) |
| Buffering begin | vrtigo.bufferBegin() |
| Buffering end | vrtigo.bufferEnd(positionMillis) |
| Submit data | vrtigo.submit() |
FAQs
Vrtigo Analytics package for React VR
The npm package vrtigo-reactvr receives a total of 9 weekly downloads. As such, vrtigo-reactvr popularity was classified as not popular.
We found that vrtigo-reactvr demonstrated a not healthy version release cadence and project activity because the last version was released 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.