Skip to content

Instantly share code, notes, and snippets.

@aarmora
Last active June 18, 2018 21:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aarmora/71839761f1c7da6664db096241b1fd19 to your computer and use it in GitHub Desktop.
Save aarmora/71839761f1c7da6664db096241b1fd19 to your computer and use it in GitHub Desktop.

Getting started

Download these

Visual Studio Code

This will be how we will edit the code. It's lightweight and pretty awesome.

Node JS

Something to run javascript on the backend and run local scripts. It also installs something called NPM (node package manager) which helps us install and run other helpers. Make sure to download LTS and not Current.

Git

Git is a way to share and collaborate on our code. It can be really confusing but is very powerful. Make sure to check the boxes it prompts. I would check them all but ESPECIALLY the one that adds git to your PATH.

Things to get via the command line

Angular Command Line tool

Angular is a front end javascript framework developed and supported by google. We'll start with this. To install it, you'll need to open a command prompt (after you install git you should also have "git bash", which is another command prompt which I think is better) and type npm install -g @angular/cli. This will use the node package manager (mentioned above) to install the Angular CLI (command line interface) globally. Meaning it can be accessed from anywhere in the command line and you won't have to be in any specific folder/project.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment