Posts

Showing posts with the label electron

Web Runtime alternatives to Electron/nw.js for Centos 6?

Web Runtime alternatives to Electron/nw.js for Centos 6? I know my title sounds crazy, as right now the popular practice is to use something like Electron or nw.js for desktop applications written using web stack technologies, but here's why I'm searching for alternative desktop web runtime solutions: So, to minimize code paths and maximize compatibility, my options appear to be: Has anyone else tried to bridge this gap to consolidate desktop apps and web apps when unfortunately Electron/nw.js aren't viable? Or does the simplification I'm searching for simply not exist? Can you run Electron in a Docker container on your Centos machine? That might be a possible cross-platform solution for you. Perhaps this would be helpful: stackoverflow.com/questions/39930223/… – Matt Morgan Jul 2 at 0:29 Thanks...

Electron + React + Typescript + Visual Studio Code? Debug? Can I debug an electron-react app in visual studio?

Electron + React + Typescript + Visual Studio Code? Debug? Can I debug an electron-react app in visual studio? Using some boiler plate code, I am able to get my electron app to work in visual studio code. I can hit the breakpoint for main.js, but not for any of my typescript/React code. I am using webpack to build, but am not married to it. How do I wire up the debugger for the React stuff? I started with these walk-throughs: medium.com and typescriptlang.org Here are my configuration files launch.js { // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "type": "node", "request": "launch", "name": "Launch Program", "preLaunchTask": "webpack", "runtimeExe...