This guide will help you get up and running a development environment on Windows, with recommend programs including Node.js, Express.js & React.js
Windows Terminal is an improved command line that allows you to run multiple tabs so that you can quickly switch between Windows Command Prompt, PowerShell, or whatever you prefer to use.
We recommend you install Visual Studio Code, as well as the following extensions to help development during the program:
To Install extensions on Visual Studio Code:
git version to verify Git was installed.We recommend using a version manager when installing Node.js as versions change very quickly. For Windows, we will install [nvm-windows](https://github.com/coreybutler/nvm-windows) and use it to install Node.js and Node Package Manager (npm). Follow the instructions here:
Assuming NodeJS and npm were successfully installed, Express.js can be installed via npm with the following command:
npm install express --save
For more information, please follow the Express.js Getting started guide
To install React, we recommend using [Vite](https://vitejs.dev/guide/) installed vianpm` when setting up a full React.js application:
npm create vite@latest
postgres) password, set one and store accordingly.postgres supersuer.localhost
5432
postgres
postgres superuserTo run & use psql command line tool in the terminal, Add PostgreSQL bin directory into the PATH system variable. Follow this instructions
Once this is done, psql should be accesible from the command line . ie:
psql -U postgres
