Lesson 200

Starting Your Project

This Lesson’s Focus

Before class

  1. Install node https://nodejs.org/en/
  2. Install VSCode https://code.visualstudio.com/

At CoderGirl

  1. VSCode Extensions
    1. TSLint
    2. Angular Language Service
    3. EditorConfig for VS Code
    4. Auto Rename Tag
  2. npm install -g @angular/cli
  3. ng -v to make sure the CLI is installed
  4. ng new codergirl-app --prefix cg --routing
  5. cd codergirl-app
  6. npm start
  7. Navigate to http://localhost:4200 in your browser
  8. Create a new repo on GitHub and push project (it is already a git repo)
  9. Deploy to Heroku

Notes

assets/

environments/

index.html

main.ts

polyfill.ts

styles.css

angular.json

package.json

README.md

Home