Skip to content

Commit

Permalink
feat(multiplexing): worked on multiplexing
Browse files Browse the repository at this point in the history
  • Loading branch information
st-vi committed Nov 21, 2023
1 parent 95277e4 commit 1f17782
Show file tree
Hide file tree
Showing 7 changed files with 153 additions and 713 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -128,3 +128,7 @@ dist
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*


.vscode/
.idea/
2 changes: 1 addition & 1 deletion WebSocketClient/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const createLanguageClient = (transports: MessageTransports): MonacoLanguageClie
protocoll = 'https';
}
console.log(window.location.protocol);
const newUrl: string = `${protocoll}://${config.languageServerHostName}${url.pathname}?port=${url.port}`;
const newUrl: string = `${protocoll}://${config.languageServerHostName}:${url.port}${url.pathname}`;
console.log(newUrl);
const iframeContainer: any = document.getElementById('iframeContainer');
const myIframe: any = document.getElementById('myIframe');
Expand Down
4 changes: 3 additions & 1 deletion WebSocketLanguageServer/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
npm-debug.log
node_modules/
build/
build/
.vscode/
.idea/
Loading

0 comments on commit 1f17782

Please sign in to comment.