DEV Community

islam kamel
islam kamel

Posted on

 

Django-Start V1.1.6

I made a new update for

Django-Start v1.1.6

, this update remained more stable, especially in running on macOS and Linux, and improving performance

Also, a new feature has worked, which will make you choose the Custom URL of the Django application, and this is a prelude to a new feature, which we will download, if God wills, in the next update 1.2.0

You can set custom URL know by type this -u or --url-path and after type your custom URL

You can read the documentation to know more about the
improvements that happened in the new version

https://github.com/islam-kamel/django-start

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.