Documentation / Private: Forums / Development / JS SDK – integration error / Reply To: JS SDK – integration error
Hi Sam,
Your error is due to your implementation, your project use Common JS and import keyWord is used to EcmaScript module, Try to replace the import { Player } from….
By const furioosSDK = require(“furioos-sdk”);
And then you can find the player by calling : const player = furioosSDK.Player;
Have a good day.