Так что я очень новичок в require.js, и я запутался как fug. Может кто-нибудь сказать мне, почему я получаю сообщение "Имя модуля" kahoot.js "еще не загружено для контекста", когда мне требуется это вверху скрипта?
<script>
require(['config'],function() {
require(['script']);
var Kahoot = require("kahoot.js");
var client = new Kahoot;
console.log("Joining kahoot...");
client.join(gamePin,"kahoot.js");
client.on("joined", () => {
console.log("I joined the Kahoot!");
});
client.on("quizStart", quiz => {
console.log("The quiz has started! The quiz's name is:", quiz.name);
});
client.on("questionStart", question => {
console.log("A new question has started, answering the first answer.");
question.answer(0);
});
client.on("quizEnd", () => {
console.log("The quiz has ended.");
});
});
</script>