Skip to main content
Version: 4.2.x

xdk-device-workstation

@accedo/xdk-device-workstation

XDK4 Convenient workstation device package.

This device is supposed to be used for development and quick evaluation of our XDK based applications in a browser.

Usage

You will need an application where you can reference this package as a module. For instance, if you want to add this package to an application as Vanilla app you have to install the package as a dependency and then include this it the devices packages array

$ npm i @accedo/xdk-device-workstation
import  workstation, {ID as WORKSTATION}  from '@accedo/xdk-device-workstation' ;

// Setup the device configuration
workstation.addPlayer(
// imported player config
);

// include the device configuration into the packages to be detected and loaded
const devices = {
packages: [
// ...
workstation // last device to load
],
detail: {
[WORKSTATION]: [
extensions: [
// add extensions
]
]
}