Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 1.55 KB

README.md

File metadata and controls

43 lines (29 loc) · 1.55 KB

Server Sent Events Demo

A small Server Sent Events demo for San Diego JS Meetup using Node, HTML, JavaScript, CSS. I also wrote a post on Medium about this topic.

demo

Slides can be found here.

Running this Project

The following instructions assume Mac OS / Linux system with Python installed (to provide a simple web server).

Get the Code using a Terminal Window

git clone https://github.com/simonprickett/server-sent-events-demo.git
cd server-sent-events-demo

Start the Server in a Terminal Window

cd src/server
npm install
npm start

Start the Client in another Terminal Window

cd src/client
python -m SimpleHTTPServer

Then point a browser at http://localhost:8000/.

Reference Materials