Skip to content

Instantly share code, notes, and snippets.

View gajjardarshithasmukhbhai's full-sized avatar
๐Ÿน
work hard silentely. Your success will became your noise

gajjar darshit hasmukhbhai gajjardarshithasmukhbhai

๐Ÿน
work hard silentely. Your success will became your noise
View GitHub Profile

Interview Questions

Node.js

Q1: What do you mean by Asynchronous API? โ˜†โ˜†

Answer: All APIs of Node.js library are aynchronous that is non-blocking. It essentially means a Node.js based server never waits for a API to return data. Server moves to next API after calling it and a notification mechanism of Events of Node.js helps server to get response from the previous API call.

Source: tutorialspoint.com

@gajjardarshithasmukhbhai
gajjardarshithasmukhbhai / System Design.md
Created August 4, 2020 22:33 — forked from vasanthk/System Design.md
System Design Cheatsheet

System Design Cheatsheet

Picking the right architecture = Picking the right battles + Managing trade-offs

Basic Steps

  1. Clarify and agree on the scope of the system
  • User cases (description of sequences of events that, taken together, lead to a system doing something useful)
    • Who is going to use it?
    • How are they going to use it?