Learning JavaScript Design Patterns

https://addyosmani.com/resources/essentialjsdesignpatterns/book/ Preface Design patterns are reusable solutions to commonly occurring problems in software design. They are both exciting and a fascinating topic to explore in any programming language. One reason for this is that they help us build upon the combined experience of many developers that came before us and Leggi tutto…

dbKoda – MongoDB admin tool

dbKoda’s rich code editor allows you to compose MongoDB queries and scripts with syntax highlighting, auto-complete and code formatting. View output in foldable JSON, tabular format or as a chart. Generate visual explain plans with a single click. The explain plan viewer will suggest indexes that may improve performance, and provide one-button creation of those indexes. Leggi tutto…

Event loop in JS

heap. where memory allocation happens call stack: is’t a data structure which records where in the program we are Single thread => one call stack => one thing at a timeNB (12′ 23″) The JS Runtime is single thread but there are WebAPIs which behave like threads and are aware Leggi tutto…