Code Monkey home page Code Monkey logo

Comments (4)

sindresorhus avatar sindresorhus commented on June 14, 2024

Are you sure you're on the latest version? A similar case was fixed in fc0585d.

This can also happen when you have strict CSP that doesn't allow getting the error information. Related: https://stackoverflow.com/questions/46422290/webpack-dev-server-react-content-security-policy-error

from electron-unhandled.

DotoPototo avatar DotoPototo commented on June 14, 2024

I should be on the latest version "electron-unhandled": "^3.0.2",!

Not sure about CSP. As far as I can tell Vue doesn't force CSP, and I'm not sure what else would.

The vue-electron plugin I'm using sets up webpack but I don't have a webpack.config file and I'm not currently sure about how it goes about using it.

from electron-unhandled.

janakg avatar janakg commented on June 14, 2024

@DotoPototo facing the same issue with a similar stack trace. Did you find any solution?
Using the latest version v3.0.2

from electron-unhandled.

laudenberg avatar laudenberg commented on June 14, 2024

Here is the smallest test case I could come up with to get this kind of error. It seems to me that the video element has to be too large to fit on screen and be initially hidden.

<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <title>Hello World!</title>
</head>
<body>
  <button onClick="go()">Click me</button>
  <div id="wrapper" style="display: none;">
    <video id="video" width="10000" height="10000" controls muted></video>
  </div>
</body>
<script>
function go() {
  const unhandled = require('electron-unhandled');
  unhandled();
  document.getElementById('wrapper').style.display = 'block';
}
</script>
</html>

For completeness, this is package.json and main.js:

{
  "name": "electron-unhandled-bug",
  "version": "1.0.0",
  "description": "",
  "main": "main.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "electron": "^9.1.0"
  },
  "dependencies": {
    "electron-unhandled": "^3.0.2"
  }
}
const { app, BrowserWindow } = require('electron')

function createWindow () {
  const win = new BrowserWindow({
    width: 800,
    height: 600,
    webPreferences: {
      nodeIntegration: true
    }
  })

  win.loadFile('index.html')
}

app.whenReady().then(createWindow)

app.on('window-all-closed', () => {
  if (process.platform !== 'darwin') {
    app.quit()
  }
})

app.on('activate', () => {
  if (BrowserWindow.getAllWindows().length === 0) {
    createWindow()
  }
})

from electron-unhandled.

Related Issues (15)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.