DEV Community

Cover image for Basic Software Installation for Full Stack Development with Angular, Node.js and MySQL
Shif
Shif

Posted on

Basic Software Installation for Full Stack Development with Angular, Node.js and MySQL

Download the below Software based on your Operating System

1) MySQL (note the password while installing it will we used later)
https://dev.mysql.com/downloads/workbench/

Image description

2) Visual Studio code https://code.visualstudio.com/download

3) Node js (version which is compatible with angular https://angular.dev/reference/versions)

https://nodejs.org/en/download/prebuilt-installer

Image description

After installation of above software

For installing Angular follow the steps below

1) Open command prompt in windows type the below command

npm install @angular/cli-g

Image description

Image description

2) Once installation done type

npm --version

3) Press enter and then type

ng --version

4) Both times version should be displayed (your version can be different from the image shown below)

Image description

For references: https://angular.dev/installation

This completes the basic software needed for Full Stack Development with Angular, Node.js and MySQL

Top comments (0)