Skip to content

Instantly share code, notes, and snippets.

View SkippyZA's full-sized avatar
⌨️
code whisperer

Steven Inskip SkippyZA

⌨️
code whisperer
View GitHub Profile
@whiteinge
whiteinge / index.js
Last active September 19, 2017 03:50
POC Node HTTP server for server-sent-events using RxJS
/**
Proof-of-concept server-sent events HTTP server using Node.js and RxJS
Open http://localhost:8000 in a browser and view the console.
**/
var http = require('http'),
https = require('https');
var Rx = require('rx');
@staltz
staltz / introrx.md
Last active August 1, 2024 08:51
The introduction to Reactive Programming you've been missing