DEV Community

AK DevCraft
AK DevCraft

Posted on • Updated on

 

Git pre-hooks examples

Here are couple of posts I wrote on how to configure pre-commit hook with Gradle and NPM projects. The way below examples are done, similarly other Git pre-hooks can be configured.

Above posts have Github repo examples as well.
Let me know if you need examples on other Git pre-hooks.

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.