Skip to content

Latest commit

 

History

History
92 lines (75 loc) · 5.2 KB

event-loop.md

File metadata and controls

92 lines (75 loc) · 5.2 KB

Bookmarks tagged [event-loop]

https://itnext.io/how-javascript-works-in-browser-and-node-ab7d0d09ac2f

There are many passionate developers, working on front-end or back-end, devote their life to protect realm of JavaScript. JavaScript is very easy to understand and is a essential part of front-end dev...


http://latentflip.com/loupe/

Loupe is a little visualisation to help you understand how JavaScript's call stack/event loop/callback queue interact with each other.

[Video - What the heck is the event loop anyway? | Philip Robert...


https://www.youtube.com/watch?v=zphcsoSJMvM

The Node.js Event Loop: Not So Single Threaded - Bryan Hughes, Microsoft

You've heard Node.js is single threaded. It's true that all JavaScript executed by Node.js is run in a single thread, but JS i...


https://davidhettler.net/blog/event-loop-lag/

In this blog post you will learn what event loop lag is, how it affects performance and why you should include this metric in your performance monitoring dashboards (if you haven’t already). Event loo...


https://nodejs.org/ru/docs/guides/dont-block-the-event-loop/

Should you read this guide?

If you're writing anything more complicated than a brief command-line script, reading this should help you write higher-performance, more-secure applications.

This do...


https://libuv.org/

libuv, a platform abstraction library with focus on asynchronous i/o.


https://github.com/chriskohlhoff/asio/

A cross-platform C++ library for network and low-level I/O programming that provides developers with a consistent asynchronous model using a modern C++ approach. [Boost] [website](http://think-async.c...


https://github.com/actor-framework/actor-framework

An Open Source Implementation of the Actor Model in C++. [BSD-3-Clause] website


http://libev.schmorp.de/

A full-featured and high-performance event loop that is loosely modelled after libevent, but without its limitations and bugs. [BSD and GPL]


http://libevent.org/

An event notification library. [BSD]


https://github.com/libuv/libuv

Cross-platform asynchronous I/O. [BSD]


https://github.com/skypjack/uvw

C++ wrapper for libuv. [MIT]