Skip to content

govind-kumarr/Working-with-Node

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

56 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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)