reading-notes

Reading Notes for Codefellows

View the Project on GitHub kylecohen14/reading-notes

Reading 06

Introduction to Node.js on sitepoint.com

  1. What is node.js?
    • Javascript runtime built on Chromes v8 JS engine
    • Event based, non-blocking runtime uses v8 JS engine on google and libuv library
  2. In your own words, what is Chrome’s V8 JavaScript Engine?
    • Its Javascript runtime with some fancy feaatures including an API, HTTP library etc
  3. What does it mean that node is a JavaScript runtime?
    • Can use to execute JS on our computers
  4. What is npm?
    • Online rep for the publishing of Node projects and a utility for online repo and helps with package install and version management
  5. What version of node are you running on your machine?
    • v14.17.0
  6. What version of npm are you running on your machine?
    • 6.14.13
  7. What command would you type to install a library/package called ‘jshint’?
    • npm install -g jshint
  8. What is node used for?
    • Installing and running vuild tools to build JS apps

Cite

Cite