
This is the error I had by running this code
const { Application } = require('@webviewjs/webview');
class WebView {
constructor(options = {}) {
this.app = new Application();
this.window = this.app.createBrowserWindow();
this.webview = null;
}
loadHTML(html) {
this.webview = this.window.createWebview({
html: html
});
}
show() {
this.app.run();
}
}
module.exports = WebView;