Web Programming Lecture 18

Node JS

  • Runs on Google Chrome’s V8 engine
  • Server side solution
  • Runs over the Command line
  • Designed for high concurrency
    • without threads or new processes
  • Never Blocks, not even for I/O
  • Uses the CommonJS Framework

Methods in NodeJS

  • Console Log
console.log("welcome to nodeJS")

Core Modules

  • HTTP for creating servers
  • FS for file system Operations
  • Path for handling file paths
  • URL for URL Handling

References

Information
  • date: 2024.09.18
  • time: 13:13