Express Js is a minimalistic framework based on http module of Node Js. It provides us with the easier creation and implementation of the servers. It simplifies the tasks, that we have to do in order to setup a server…
Month: March 2024
Events in Node Js
Node Js is a asynchronous event-driven runtime. Node Js can perform tasks asynchronously, i.e. without waiting for a task to be executed, it can move further. Node Js has a built-in module named “events”. “events” module has EventEmitter() class. With…