DEV Community

Cover image for I'm looking for readings, blogs, books, opinions about PMing software meant for developers/engineers
Avery
Avery

Posted on

 

I'm looking for readings, blogs, books, opinions about PMing software meant for developers/engineers

I was thinking about this excellent article called Product Management for the Enterprise by Blair Reeves.

Is there something like this for when your customers look a lot yourself? Or when they know what great software looks like? Or when they have strong opinions about features?

How is building software for engineers and software teams different to other customers? What are the nuances?

Thanks for any help/direction!

Top comments (0)

An Animated Guide to Node.js Event Loop

Node.js doesn’t stop from running other operations because of Libuv, a C++ library responsible for the event loop and asynchronously handling tasks such as network requests, DNS resolution, file system operations, data encryption, etc.

What happens under the hood when Node.js works on tasks such as database queries? We will explore it by following this piece of code step by step.