Skip to content

Setup Development Environment

Video Lecture

Setup Development Environment Setup Development Environment

Install VSCode IDE and Node

  1. VSCode https://code.visualstudio.com/
  2. Node https://nodejs.org/

To verify that VSCode is correctly installed, open a command/terminal prompt and type

code -v

And it should show some version information, and not indicate an error such as The term 'code' is not recognized

To verify that NPM is installed, type

npm -v

It should show some version information, and not indicate an error.

On Windows, your version should be 7 or higher.

And, Also type

node -v

The response should also be a number and not an error message.

We can continue.