Skip to content

Instantly share code, notes, and snippets.

View jangjunha's full-sized avatar

jangjunha jangjunha

View GitHub Profile
@seokju-na
seokju-na / common.js
Created June 6, 2017 16:22
electron 스터디: remote
const { EventEmitter } = require('events');
let value = 0;
let emitter = new EventEmitter();
function increase() {
value += 1;
emitter.emit('valueChanges', getValue());
}
@staltz
staltz / introrx.md
Last active June 21, 2024 12:27
The introduction to Reactive Programming you've been missing