Being currently unable to get the touches into O-S-C in macOS, I am back to the RPI 5. I have managed to install Node.js (following this tutorial). I have checked and it's functioning. Then I go to the O-S-C/launcher subfolder. If I click on the index.htm, I have the top bar of the launcher opening, but otherwise it's empty and clicking on the run button doesn't start anything. What's wrong?
That's not how it's supposed to run, please read Running with node - Open Stage Control. When running with node the launcher is not used, options must be specified directly from the command line terminal.
Hmm good point, I guess that's just me forgetting to clean the node release archive ;).
Yes the folder name doesn't matter as long as the folder structure inside it is preserved.
Well maybe something like ~/.local/lib/would be a suitable place. Then you could create a simple launcher in ~/.local/bin/ if you want to make it available as a terminal command anywhere:
# create executable file
echo -e "#!/bin/node\nrequire('~/.local/lib/open-stage-control-node')"> ~/.local/bin/open-stage-control
# make it executable
chmod +x ~/.local/bin/open-stage-control
# now open-stage-control cmd should be available
No, I mean that as with Node there's no built-in client but one has to use a browser for instance, how to get rid of the address bar and all the non-O-S-C stuff?