electron/renderer/api/lib/ipc.coffee

15 lines
367 B
CoffeeScript

EventEmitter = require('events').EventEmitter
send = process.atom_binding('ipc').send
class Ipc extends EventEmitter
constructor: ->
process.on 'ATOM_INTERNAL_MESSAGE', (args...) =>
@emit('message', args...)
send: (args...) ->
@sendChannel('ATOM_INTERNAL_MESSAGE', args...)
sendChannel: (args...) ->
send(args...)
module.exports = new Ipc