🔰Node.js

JSconceptsenvironment ⟩ Node

(a JS runtime environment) builds server-side applications with JavaScript.

in Node.js

in Node.js

  • each JS file is treated as a module.

  • automatically wraps the code of a JS file in a self IIFE with:

    • exports, require, module, __filename, __dirname

    as parameters to the function.

👉 stackoverflow ⟩ What is the 'global' object in NodeJS

v8 is the JS engine used in Chrome / Node.js.

Last updated