1. Node JS

  • Runtime environment for executing JavaScript code outside of a web browser
  • Cross- Platform, Open- Source
  • Built on top of Google's V8 Engine
  • Compiles JavaScript code directly into native machine code, making it fast and efficient
  • Uses event-driven, non-blocking I/O model that allows developers to build scalable and high-performance applications that can handle large amounts of data and traffic
  • Comes with built in package manager called NPM (Node Package Manager) making it easier to install, manage and share packages and dependencies. 
  • Commonly used for building server-side web applications, real-time chat applications, APIs, and command-line tools.

Comments