electron-connect
electron-connect copied to clipboard
Livereload tool for Electron
If electron is not installed either in the project or globally the error looked like this: ``` [2016-10-23T02:17:40.846Z] [electron-connect] [server] started electron process: undefined [2016-10-23T02:17:40.846Z] [electron-connect] [server] created and listening...
Hey, i get the following error when running gulp serve: ``` [22:28:13] Starting 'serve'... [22:28:13] Finished 'serve' after 4.6 ms [2016-11-15T21:28:13.505Z] [electron-connect] [server] started electron process: undefined [2016-11-15T21:28:13.506Z] [electron-connect] [server]...
Hi! Thanks for develop this tool. I'm trying to use this with webpack, and I successfully had setup basic reload. However, I would like some additional task to be handle....
I was researching a solution and found this project https://github.com/yan-foto/electron-reload. It seems to go a different, much simpler route. What am I missing?
If you try to pass some arguments to `electron` using the `args` parameters doesn't work properly. ``` const electron = require("electron-connect").server.create(); electron.start(["--api", "http://localhost:4444/api"], (procState) => { ... }); ```
I have set up a project where I use electron-connect in a gulpfile. Whenever I do modifications inside my electron server I call the `electron.restart` task. I've added listeners on...
Tool looks great but with npm scripts there is really no reason to use gulp anymore. Would you consider creating command line support so it can just be used from...
I have recently filed an issue, within the realm of the Electron project — a case which refers to a condition where Electron raises an exception, alongside with a JavaScript...
In the browser process's main.js, i have ``` javascript const client = require("electron-connect").client; //snip mainWindow = new BrowserWindow({width: 400, height: 600}); mainWindow.maximizable(); client.create(mainWindow); ``` Similar to issue #30, after running...
Readme should elaborate on why you can't just use vanilla [Livereload](http://livereload.com/) or [BrowserSync](http://www.browsersync.io/). Electron is just a _browser_ window after all.