DEV Community

Mubarak Showole
Mubarak Showole

Posted on

 

How to install ImageMagick?

I've recently picked up interest in contributing to this platform (forem/dev.to) so I've been reading the documentation.

I'm now stuck on the installation of ImageMagick. I run on Windows OS so im not sure if i'm to install ImageMagick on WSL or on my machine itself.

Please help clarify. Thanks!

Top comments (1)

Collapse
 
dawx profile image
Dawx • Edited

You can download Windows version on your PC from this link: imagemagick.org/script/download.ph...
and after that, you can use it from CMD prompt

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.