From c9c2bc82c10408d214d822b8d1d15e231e8e256d Mon Sep 17 00:00:00 2001 From: Junwei Zhao Date: Fri, 2 Mar 2018 16:26:06 +1100 Subject: [PATCH] Add http2 server push links --- categories/web.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/categories/web.md b/categories/web.md index 63e8568..26c7c64 100644 --- a/categories/web.md +++ b/categories/web.md @@ -3,6 +3,8 @@ - [HTML](#html) - [HTTP 2](#http-2) - [HTTP server push](#http-server-push) +- [HTTP server-sent events](#http-server-sent-events) + - [Links](#links) - [CSS3](#css3) - [CORS](#cors) - [CDN](#cdn) @@ -21,6 +23,20 @@ Server push some related resource before the browser sends the request. .e.g. Browser request index.html, and then server response with index.html and also take the initiative to push style.css and index.js to frontend. +Frames: + +* HEADERS +* PUSH_PROMISE +* DATA +* RST_STREAM + + +# HTTP server-sent events + + +### Links +* [A Comprehensive Guide To HTTP/2 Server Push](https://www.smashingmagazine.com/2017/04/guide-http2-server-push/) + # CSS3