зеркало из https://github.com/electron/electron.git
17 строки
368 B
JavaScript
17 строки
368 B
JavaScript
const path = require('path')
|
|
|
|
process.on('uncaughtException', function (error) {
|
|
process.send(error.stack)
|
|
})
|
|
|
|
var child = require('child_process').fork(path.join(__dirname, '/ping.js'))
|
|
process.on('message', function (msg) {
|
|
child.send(msg)
|
|
})
|
|
child.on('message', function (msg) {
|
|
process.send(msg)
|
|
})
|
|
child.on('exit', function (code) {
|
|
process.exit(code)
|
|
})
|