Table of Contents
If you do not know what npm or nodejs is and do not have them installed on your machine, do not worry, continue here, else head to section 1.2.
NodeJS is an environment that allows users to run JavaScript code in backend servers instead of just in the user’s computer browser.
Create a StackBlitz Account
For ease of setup, we will use a StackBlitz, an online browser development environment that already has nodejs and npm packaged in. Proceed to create an account and you are all set.

Ensure that you have npm and nodejs on your machine.
# Run the following in terminal to check for installation
node -v
npm -v