Skip to content
#

async/await

In computer programming, the async/await pattern is a syntactic feature of many programming languages that allows an asynchronous, non-blocking function to be structured in a way similar to an ordinary synchronous function, and is primarily intended to provide opportunities for the program to execute other code while waiting for a long-running, asynchronous task to complete, usually represented by promises or similar data structures.

Here are 2,504 public repositories matching this topic...

Refresher on more of the advanced topics of JS that are used in real-time applications like Async-await and Promises. At the same time, covering the use-case of these function types along with setTimeout & setInterval to create delay in function execution. Lastly, covering some theoretical concepts like Concurrency, Parallel processing & Throttling

  • Updated May 30, 2024
  • TypeScript

This Login System is a fullstack web app thats authenticates user, with functionalities for saving a user with hashed password in DB, logging in a user by comparing the typed and hashed password and saves a token in the localstorage after login. It uses MYSQL as the database, Express.js for handling server-side logic, React.js for rendering UI.

  • Updated May 30, 2024
  • JavaScript