Skip to content

Latest commit

 

History

History
46 lines (35 loc) · 1.27 KB

01-setup.md

File metadata and controls

46 lines (35 loc) · 1.27 KB

Install Node

  1. Goto: https://nodejs.org/en/
  2. Install the latest Current version
  3. Once installed, test by typing in your command prompt: node -v and you should get a version number (Command prompt can be accessed via Start > cmd)
  4. In addition, if you type: npm -v you should also get npm's version

Setup course lessons structure

Under default path C:\Users\avillaruz>

  1. Create new folder called node c:\Users\avillaruz\node\
  2. Within node/ create folder lesson1/

Shell commands you should know:

  • cd
  • c:
  • dir
  • getting help via /?
  • mkdir / rmdir
  • del
  • type
  • move
  • What are Mac/Linux equivalents to above commands?
  • can use tab keys to auto-fill
  • use up/down arrow keys to reuse commands
  • Don't leave spaces between filenames and folder paths

Recommend you install VSCode

Install ESlint + Prettier

Debugging node in VScode