Server-sent events

Server-Sent Events utilize a regular HTTP octet streams, and therefore are limited to the browser’s connection pool limit of ~6 concurrent HTTP connections per server.

WebSockets

What are WebSockets? WebSockets are really just an extension of the socket idea. While HTTP was invented for the World Wide Web, and has been used

HTTP Long Polling

Web applications were originally developed around a client/server model, where the Web client is always the initiator of transactions, requesting data from the server. Thus,

Git Managing branches

Managing Git Branches A single Git repository can maintain multiple branches of development. To create a new branch named “adding-shopping-branch”, use $ git branch adding-shopping-branch

1 3 4 5