TylusDawkins / windows-setup

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

windows-setup

Windows Native (This is an optional path for those with advanced windows skills as you will have to rely on your own intuition for installs)

Installing VS Code

VSCode is going to be our text editor of choice for this course.

You can download it HERE.

Once downloaded, go ahead and run the installer. Once the installer completes, open VSCode.

Installing GitBash

Gitbash allows your PC to run code as if it is in a UNIX enviorment, allowing you to interface with your code from your terminal.

Install the x64 bit version from the link below.

When offered to select your default code editor, make sure to select VS Code.

https://git-scm.com/download/win

Follow the instructions below after opening the file.

Select Components

Select All Check boxes except Additional Icons/On The Desktop.

image

Choosing The Default Editor Used By Git

Select use Studio Code as Git's default editor.

image

Adjusting The Name Of The Inital Branch In New Repositories

Select override and confirm the name in the textfield is main.

image

Adjusting Path Enviornment

Select Git from the command line and also third party software.

image

Choosing the SSH executable

Select use bundled OpenSSH.

image

Choosing HTTPS transport backend

Select use the OpenSSL library.

image

Configuring the line ending conversations.

Select checkout windows-style, commit Unit-style line endings

image

Configuring the terminal emulator to use with Git Bash.

Select Use Windows default console window.

image

Choose the default behavior of git pull

Select Default.

image

Choose Credential Helper

Select Git Credential Manager.

image

Configuring Extra Options

Select Enable file system caching.

Configuring Experimental Support

Select none.

Click Install.

Installing Node.JS

Install the 64x .msi version from the link below.

https://nodejs.org/en/download/

Custom Setup

After opening and getting passed the inital setup screen you'll be met with this section.

image

Click next.

Tools For Native Modules

image

Select check the box.

Press next click install.

Terminal Prompts

You will be met with your native terminal as seen below.

image

Press any key as prompted.

After a brief wait it will ask for powershell to make changes, allow.

It will spend some time loading and downloading dependancies, you'll be met with something that looks like the photo below. This denotes that the process is complete and you can close the window.

image

Confirming Node Installation

Open Git Bash from your windows search tool

image

Inside of the terminal simply type in node and you should get the current version

image

Press CTRL + C to exit the node shell

Lastly, to ensure all packages were correctly installed type

npm --v

About