What is NodeJS

JS - was meant to run only in the browser

Chrome - V8 Engine Firefox - SpiderMonkey

Export

module.exports = anything; exports.key = value;

Import

for single import const name = require(path)

for multiple imports const {name1,name2} = require(path)