UPDATE 101
BLACKBOX SCRIPT - 
CHROME 
http://bit.ly/1zNznip
HTTP/2 IS COOKING 
http://bit.ly/1tglhSj
HTTP/2 IS COOKING 
● IN HTTP/2, SAME CONNECTION FOR MULTIPLE 
REQUEST 
● PRIORITISING REQUESTS ARE POSSIBLE 
● SERVERS CAN PUSH RESPONSES TO CLIENT 
http://bit.ly/1tglhSj
CRITICAL RENDER PATH 
http://bit.ly/1zUnUh5
TOO MANY IMAGES 
http://bit.ly/1s1p7Nz
PREF : STORE SCRIPT AND 
STYLE BLOCK IN LOCAL 
STORAGE 
http://bit.ly/1C65VsY
USE FLOW - STATIC TYPE 
CHECKER 
http://bit.ly/1p031jk
THANK YOU 
GOOGLE PLUS - plus.google.com/u/0/+sambathkumarl/posts 
TWITTER - @samkumar15 
FACEBOOK - www.facebook.com/sambathl

More Related Content

PDF
Artificial Intelligence, Data and Competition – SCHREPEL – June 2024 OECD dis...
PDF
Storytelling For The Web: Integrate Storytelling in your Design Process
PDF
How to Leverage AI to Boost Employee Wellness - Lydia Di Francesco - SocialHR...
PDF
2024 Trend Updates: What Really Works In SEO & Content Marketing
PPTX
Leverage of MBAAS
PDF
2024 State of Marketing Report – by Hubspot
Artificial Intelligence, Data and Competition – SCHREPEL – June 2024 OECD dis...
Storytelling For The Web: Integrate Storytelling in your Design Process
How to Leverage AI to Boost Employee Wellness - Lydia Di Francesco - SocialHR...
2024 Trend Updates: What Really Works In SEO & Content Marketing
Leverage of MBAAS
2024 State of Marketing Report – by Hubspot

Recently uploaded (20)

PPTX
observCloud-Native Containerability and monitoring.pptx
PPTX
The various Industrial Revolutions .pptx
PDF
Microsoft Solutions Partner Drive Digital Transformation with D365.pdf
PDF
Five Habits of High-Impact Board Members
PDF
A novel scalable deep ensemble learning framework for big data classification...
PDF
DASA ADMISSION 2024_FirstRound_FirstRank_LastRank.pdf
PDF
A Late Bloomer's Guide to GenAI: Ethics, Bias, and Effective Prompting - Boha...
PPTX
Final SEM Unit 1 for mit wpu at pune .pptx
PDF
Hybrid model detection and classification of lung cancer
PDF
DP Operators-handbook-extract for the Mautical Institute
PDF
A contest of sentiment analysis: k-nearest neighbor versus neural network
PDF
How ambidextrous entrepreneurial leaders react to the artificial intelligence...
PDF
Developing a website for English-speaking practice to English as a foreign la...
PDF
Enhancing emotion recognition model for a student engagement use case through...
PPTX
Web Crawler for Trend Tracking Gen Z Insights.pptx
PDF
August Patch Tuesday
PDF
NewMind AI Weekly Chronicles – August ’25 Week III
PDF
Getting Started with Data Integration: FME Form 101
PDF
Assigned Numbers - 2025 - Bluetooth® Document
PDF
A review of recent deep learning applications in wood surface defect identifi...
observCloud-Native Containerability and monitoring.pptx
The various Industrial Revolutions .pptx
Microsoft Solutions Partner Drive Digital Transformation with D365.pdf
Five Habits of High-Impact Board Members
A novel scalable deep ensemble learning framework for big data classification...
DASA ADMISSION 2024_FirstRound_FirstRank_LastRank.pdf
A Late Bloomer's Guide to GenAI: Ethics, Bias, and Effective Prompting - Boha...
Final SEM Unit 1 for mit wpu at pune .pptx
Hybrid model detection and classification of lung cancer
DP Operators-handbook-extract for the Mautical Institute
A contest of sentiment analysis: k-nearest neighbor versus neural network
How ambidextrous entrepreneurial leaders react to the artificial intelligence...
Developing a website for English-speaking practice to English as a foreign la...
Enhancing emotion recognition model for a student engagement use case through...
Web Crawler for Trend Tracking Gen Z Insights.pptx
August Patch Tuesday
NewMind AI Weekly Chronicles – August ’25 Week III
Getting Started with Data Integration: FME Form 101
Assigned Numbers - 2025 - Bluetooth® Document
A review of recent deep learning applications in wood surface defect identifi...
Ad
Ad

Js update 101

  • 2. BLACKBOX SCRIPT - CHROME http://bit.ly/1zNznip
  • 3. HTTP/2 IS COOKING http://bit.ly/1tglhSj
  • 4. HTTP/2 IS COOKING ● IN HTTP/2, SAME CONNECTION FOR MULTIPLE REQUEST ● PRIORITISING REQUESTS ARE POSSIBLE ● SERVERS CAN PUSH RESPONSES TO CLIENT http://bit.ly/1tglhSj
  • 5. CRITICAL RENDER PATH http://bit.ly/1zUnUh5
  • 6. TOO MANY IMAGES http://bit.ly/1s1p7Nz
  • 7. PREF : STORE SCRIPT AND STYLE BLOCK IN LOCAL STORAGE http://bit.ly/1C65VsY
  • 8. USE FLOW - STATIC TYPE CHECKER http://bit.ly/1p031jk
  • 9. THANK YOU GOOGLE PLUS - plus.google.com/u/0/+sambathkumarl/posts TWITTER - @samkumar15 FACEBOOK - www.facebook.com/sambathl

Editor's Notes

  • #3: http://bit.ly/1zNznip - #Chrome Devtools introduces new feature in#JavaScript debugging called Blackbox script. These are marked scripts will be skipped in the debugging on the control flow chain. So that I don't wait control switch back from 3rd party library script or some other script you not interested
  • #4: http://bit.ly/1ttWX1t - #http/2 version is cooking very hot, these are the few draft based implementation on various lang. #http/2 is not complete revamp of #http/1. It just add few functionalities and tweaks to improve the #performance. Whats special in #http/2 1) Unlike http/1 where multiple request made from web client to server to achieve concurrency and reduced latency. #http/2 use the same connection for multiple requests. It more like one connection between client and web server 2) In #http/2, prioritising requests are possible 3) Interactive mode available in #http/2 in which Server can Push responses to client. Means, to trade of latency of network. Server send a PUSH_PROMISE frame. Later server synthesis a request and send response in separate stream 3) #http/2 community, actively touch with TLS community for version identification If you have time and willingness, Please contribute to 
  • #5: http://bit.ly/1ttWX1t - #http/2 version is cooking very hot, these are the few draft based implementation on various lang. #http/2 is not complete revamp of #http/1. It just add few functionalities and tweaks to improve the #performance. Whats special in #http/2 1) Unlike http/1 where multiple request made from web client to server to achieve concurrency and reduced latency. #http/2 use the same connection for multiple requests. It more like one connection between client and web server 2) In #http/2, prioritising requests are possible 3) Interactive mode available in #http/2 in which Server can Push responses to client. Means, to trade of latency of network. Server send a PUSH_PROMISE frame. Later server synthesis a request and send response in separate stream 3) #http/2 community, actively touch with TLS community for version identification If you have time and willingness, Please contribute to 
  • #6: Critical - resources need absolute Render - View or show Path - is sequence of the event to display the web page Initial view - requires above 3 CRP objective is to load faster bigger web app than small website More info - https://www.udacity.com/course/ud884
  • #7: It a node tool over page speed insight - http://bit.ly/1s1p7Nz - (Too Many Images) TMI is a new tool to calculate your website image weight. Use it well, to improve your website latency :)
  • #8: More info - http://bit.ly/1C65VsY
  • #9: http://bit.ly/1p031jk - Facebook's static type checker for JavaScript,#Flow. No need to add or change code to validate