Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 1.84 KB

js.md

File metadata and controls

29 lines (18 loc) · 1.84 KB

JS related resources and extracts.


1. NodeJS -Beyond the basics by Samer Buna - A comprehensive NodeJs tour with good overview of internals.

Event image

diagram

3. Introducing hooks- Dan Abramov introducing React Hooks in React conf 2018

diagram

4. Introduction to redux by Dan Abramov- Dan Abramov,the creator of redux introducing Redux in the simplest, most eloquent way possible. This short course is better than any youtube tutorial out there.

diagram

4. Event Loop: Not So Single Threaded- A decent explaination of when nodejs act single threaded and when it does not.

diagram

5. Event Loop - Sweet explaination of event loop on the browser for beginners.(Same for the node,except instead of WebAPI's ,we have C++ API's in node which can themselves spawn more threads)

diagram

6. In the Event Loop - Order of execution in Event Loop. Promises using microtasks,animation callbacks and a good quiz at the end to clear the concepts. Overall an insightful talk. (Except for the bit where he tries to crack jokes but tough audience man!!)

diagram

7. A cartoon to webassembly- How javascript runs inside of engine, interpretors, compilers, and how webassembly fits into the picture.

diagram