DEV Community

Matt Layman
Matt Layman

Posted on • Originally published at mattlayman.com

 

Finishing third party integration - Building SaaS #9

In this episode, we finished off our integration with Prompt. To finish the integration, we changed the background web scraping task to send an email when changes happen. We also discussed how we're going to build out an admin dashboard for managing back office processing.

Show notes for this stream are at Episode 9 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.