May 2017
— An event bus and scheduler, specifically
const safe = (e) => (e.on('error', err => console.error(err.name + ': ' + err.message)), e);safe(http.Server((req, res) => safe(fs.createReadStream('.' + req.url)) .pipe(res))) .listen(1778)
— Very lispy
— Sexy
— I kind of like sequences in JS
— It's how you get shit done
— (a, b, c)as opposed to
(a, b, c)
a;b;c;
— That right there is already leagues ahead of most JS developers imo
— Heh
— Imperative vs functional
— Implicit return of last statement is nice
— Const six = (1 + 1, 2 + 2, 3 + 3)