## Introduction Datazoom is a high availability real-time data collection solution. This document summarizes how to integrate with the Datazoom platform.
npm install @datazoom/collector_html5_nativeHTML5 Native``js`
npm i @datazoom/collector_html5_native
`js`
datazoom.init({
configuration_id:"CONFIG_ID"
});
Note: Replace the CONFIG_ID value with the collector configuration ID.
To activate data collection for HTML5 instance, create a Datazoom context which references the player instance with the following snippet:
`js`
let playerContext = datazoom.createContext(playerManager);
Example
`js``
import datazoom from '@datazoom/collector_html5_native'
...
let playerContext;
...
datazoom.init({
configuration_id:"CONFIG_ID"
});
playerContext = datazoom.createContext(playerManager);