I started jupyter notebook with this command:
jupyter notebook --NotebookApp.allow_origin=‘*’ --NotebookApp.token=‘myTokenKey’ --port=8888
And I have npm pocket @jupyterlab/services and connect to Jupyter server in this way:
ServerConnection.makeSettings({
baseUrl: ‘http://localhost:8888/’,
wsUrl: ‘ws://localhost:8888/’,
token: ‘myTokenKey’,
});
All is working, but i see binary messages in socket. How i can disable this serialize and get standart json?