Skip to content

driannaird/Learning-NodeJS-from-basic

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Learning Node JS From Basic

Node JS

Authors

What is Node JS

js (Node) is an open source, cross-platform runtime environment for executing JavaScript code. Node is used extensively for server-side programming, making it possible for developers to use JavaScript for client-side and server-side code without needing to learn an additional language.

V8 is the JavaScript engine that powers Node. js, and Node. js is a runtime environment that allows you to write server-side JavaScript applications

V8 is the name of the JavaScript engine that powers Google Chrome. It's the thing that takes our JavaScript and executes it while browsing with Chrome. V8 provides the runtime environment in which JavaScript executes. The DOM and the other Web Platform APIs are provided by the browser.

Installation Node JS

  • Open website Node JS
  • Download LTS version and install
  • After install Node JS check in your terminal
  node -v

and

  npm -v

Lessons Learned

What can you learn here?

Reference

Sandhika Galih