Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
displaying-musicalenvironment-content [2024/02/19 21:49] – steve.wang | displaying-musicalenvironment-content [2025/07/29 03:10] (current) – steve.wang | ||
---|---|---|---|
Line 3: | Line 3: | ||
**Overview: ** Imagine. One day, there was a guy named Tom. He created a very complicated MusicalEnvironment but did understand it completely and could not see what it did clearly. He also wanted to show his teammates his current MusicalEnvironment so that they could explain to him. | **Overview: ** Imagine. One day, there was a guy named Tom. He created a very complicated MusicalEnvironment but did understand it completely and could not see what it did clearly. He also wanted to show his teammates his current MusicalEnvironment so that they could explain to him. | ||
- | **Things To Note:** This tutorial assumes you have already installed Konduktiva successfully using the [[https:// | + | |
+ | **Things To Note:** This tutorial assumes you have already installed Konduktiva successfully using the [[https:// | ||
+ | <code javascript> | ||
+ | const K = require(' | ||
+ | let e = K.setUpMusicalEnvironment(K.defaultConfigurationObject, | ||
+ | </ | ||
===== Displaying Content Of MusicalEnvironment Through Web Sockets | ===== Displaying Content Of MusicalEnvironment Through Web Sockets | ||
Line 42: | Line 47: | ||
Use the function called changeWebsocketServerPort like so: | Use the function called changeWebsocketServerPort like so: | ||
<code javascript> | <code javascript> | ||
+ | //assign the webscoket server to a variable: | ||
+ | K.wss = K.connectVariableToCurrentWss() | ||
+ | |||
+ | //Change the port: | ||
K.wss = K.changeWebsocketServerPort(8081, | K.wss = K.changeWebsocketServerPort(8081, | ||
</ | </ | ||
Line 50: | Line 59: | ||
Next you will have to change the port the client listens to inside the file test.js line 25. | Next you will have to change the port the client listens to inside the file test.js line 25. | ||
It looks like this currently change it to the port you want to: | It looks like this currently change it to the port you want to: | ||
- | ``` | + | <code JavaScript> |
const serverPort = 8080; // Replace with the port number on which the server is running | const serverPort = 8080; // Replace with the port number on which the server is running | ||
- | ``` | + | </ |
After that save and reload the client browser page. | After that save and reload the client browser page. | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | [[using-worker-threads-with-konduktiva|Learn about using worker threads in Konduktiva next]] |