An RPC library for VSCode WebViews
npm install @sap-devx/webview-rpc


!GitHub license


bash
npm install @sap-devx/webview-rpc
`
This will install the library in your node_modules folder. The extension library can be used as any node.js module (with TypeScript). The webview library needs to be imported to your html.
* Add the following script to the root html of your Webview
`html
`
$3
Create new instance of the Rpc in the extension side and the Webview side
* In the extension code use the following example to start new instance of the RpcExtension:
`ts
this._rpc = new RpcExtension(this._panel.webview);
`
* In the Webview JS code use the following example to start new instance of the RpcBrowser:
`js
const vscode = acquireVsCodeApi();
let rpc = new RpcBrowser(window, vscode);
`
$3
In order to invoke an extension method from the webbiew or webview method from the extension, you will have to register the functions that can be invoked.
Here is an example on how to register the methods
`js
function add(a,b) {
return a+b;
}rpc.registerMethod({func: add});
`
$3
To invoke a method use the invoke method on the rpc instance. You can pass a callback that will be invoked once the response received.\
For version ^0.x.y :
`js
rpc.invoke("add", [1,2]).then((response)=>{
console.log("1+2="+response);
});
`
Since version 1.x.y :
`js
rpc.invoke("add", 1,2).then((response)=>{
console.log("1+2="+response);
});
`Build and Development
To build for development purpose do the following:
Run "npm install*" on the repo to download the project dependencies.
`bash
npm install @sap-devx/webview-rpc
`
Run "npm run compile-ext*" to compile the extension library sources to javascript. The compilation results will be on the directory "out.ext".
`bash
npm run compile-ext
`
Run "npm run compile-browser*" to compile the browser library sources to javascript. The compilation results will be on the directory "out.browser".
`bash
npm run compile-browser
`
Run the test using "npm run test*".
`bash
npm run test
``* overcome Cors issue preventing post message to get through and hit the window:
use the setHost method and sent the host name from the webview - and then the message should get through.