Connecting an (USB) midi device to the OSC client

Hi there,
I’m a new user of Open Stage Control and started to experiment a bit: seems very promising so far !

I have a use case where I’d like to connect a Physical midi keyboard to an android tablet (client) and use Open Stage Control both as a touch controller + to provide remote capabities to the keyboard by forwarding OSC messages to the server.

I tried to use the Midi Web API (Web MIDI API) in a javascript widget but this fail as the navigator variable is not available (even though the client is chrome).

navigator.requestMIDIAccess

Is there any way to do this with Open Stage Control ?

if (navigator.requestMIDIAccess) {
    console.log('This browser supports WebMIDI!');
} else {
    console.log('WebMIDI is not supported in this browser.');
}

These API are not available in O-S-C.

Interesting!

Maybe via nodeJs, the current Version 3 (alpha) seems to support it.