-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
eiis command error #6
Comments
sorry. it currently haven't tested on Windows, and just work for Mac os. I will try to support Windows later. |
Thank you, I am looking forward to supporting Windows. I hope this plugin can be marked for MAC only.= = |
@wowsonsun sorry for the convenience |
internal/child_process.js:405
throw errnoException(err, 'spawn');
^
Error: spawn UNKNOWN
at ChildProcess.spawn (internal/child_process.js:405:11)
at spawn (child_process.js:548:9)
at Object.<anonymous> (C:\Users\dreamer2q\scoop\persist\nodejs\bin\node_modules\electron-image-ipc-server\index.js:18:12)
at Module._compile (internal/modules/cjs/loader.js:1147:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:1167:10)
at Module.load (internal/modules/cjs/loader.js:996:32)
at Function.Module._load (internal/modules/cjs/loader.js:896:14)
at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:71:12)
at internal/main/run_main_module.js:17:47 {
errno: -4094,
code: 'UNKNOWN',
syscall: 'spawn'
} Same issue, frustrated! |
I also stumbled into this on my Windows 7. Your package json should have resolved that by 'bin' property - but for some reason it didn't. So I tried to change this spawn line: electron = spawn(electronPath, [scriptPath, scriptPath], {
env: spawn_env,
stdio: ['pipe', 'pipe', 'pipe', 'ipc']
}); to this: electron = spawn('node', [electronPath, scriptPath, scriptPath], {
env: spawn_env,
stdio: ['pipe', 'pipe', 'pipe', 'ipc']
}); And the error went away! However, extension still doesn't work :( and not giving any obvious errors anywhere. just quietly does nothing. Electron doesn't seem to be executed, my github API key is not used. |
When I installed ‘npm install -g electron-image-ipc-server’, type ‘eiis’ and the following error occurred.
The text was updated successfully, but these errors were encountered: