Become a member
Sign in
Josh Poole
Josh Poole

Josh Poole

14 Following
8 Followers
  • Profile
  • Claps
  • Highlights

Highlighted by Josh Poole

See more

From Catching without Awaiting by Eran Hammer

olves…turn a promise. That’s not a great solution because async/await is just a layer on top of promises. Adding async to a function that doesn’t need it (e.g. it doesn’t call await ) will add a wasteful promise wrapper and a next-tick operation. This is because a promise always resolves on a next-tick and async methods always return a promise.

From How Node.Js Single Thread mechanism Work ? Understanding Event Loop in NodeJs by Pramod Chandrayan

odeJs for every connection request do not create a new thread instead it receives all request on single thread and delegates it to be h…ain functionality differentiation between NodeJs based servers and other IIS/ Apache based servers, NodeJs for every connection request do not create a new thread instead it receives all request on single thread and delegates it to be handled by many background workers to do the task as required. Libuv library handles this workers in collaboration with OS kernel. Lib…

Claps from Josh Poole

See more

Understanding Express.js: Creating Your Own Node HTTP Request Router

Nick Scialli

Enforcing Code Quality for Node.js

Patrick Lee Scott

Before you can master design, you must first master the fundamentals

Jonathan Z. White