What is Single thread model used in node js and how its eliminates the limitation of multi thread model

Node Js is event driven, handing all the request asynchronously from single thread. Almost no function  in node directly performs I/O, so the process never blocks. So…

What is Multi thread model and what are the limitations ?

In a Multi thread model the server assign incoming requests to a new thread similar as a client server architecture, the user generate a request by interaction…

angular icon

Angular material chips stop autofocus of mat-chips problem solution

Angular Material is very useful for designing your angular application, Angular material chip is one of the angular material features where you can add tags or chips…

angular icon

ejs-datetimepicker and ejs-timepicker’s times dropdown list globalization 12 and 24 hours format

You may come across a problem during your angular project development, where you need to change an ejs-datetimepicker time format to 12 hours to 24 hours. Maybe…