DEV Community

Margaret W.N
Margaret W.N

Posted on

 

Day 91: Landing Page Design and Implementation.

I finally completed the landing page and made a couple of changes in the process. This was an interesting one, I googled how to do everything in Vue πŸ˜…. I have to admit that after Brad's Crash course I thought I was ready for Vue, shock on me!!πŸ˜‚
Alt Text.
The button is smaller on the implementation because the dimensions on the design appeared exaggerated on implementation.

Design

I also designed the next section. Still a work in progress though.
Alt Text

That's my Day 91

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.