DEV Community

Matt Layman
Matt Layman

Posted on • Originally published at mattlayman.com

 

Admin dashboards - Building SaaS #10

In this episode, we started on a tools dashboard for admin-level users. We talked about Django's auth module for handling access and how to protect views from unauthorized users.

Show notes for this stream are at Episode 10 Show Notes.

To learn more about the stream, please check out Building SaaS with Python and Django.

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.