├── app ├── dummy.ts └── assets │ └── images │ ├── ng-nl.png │ ├── ng-conf.png │ ├── ng-vegas.png │ ├── basic-shield.png │ └── angularconnect-shield.png ├── favicon.ico ├── .gitignore ├── tsconfig.json ├── styles.css ├── readme.MD ├── index.html ├── package.json └── systemjs.config.js /app/dummy.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcooper/ng2-fundamentals/HEAD/favicon.ico -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | typings 3 | /app/**/*.js 4 | /app/**/*.map 5 | .vscode/ 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/assets/images/ng-nl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcooper/ng2-fundamentals/HEAD/app/assets/images/ng-nl.png -------------------------------------------------------------------------------- /app/assets/images/ng-conf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcooper/ng2-fundamentals/HEAD/app/assets/images/ng-conf.png -------------------------------------------------------------------------------- /app/assets/images/ng-vegas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcooper/ng2-fundamentals/HEAD/app/assets/images/ng-vegas.png -------------------------------------------------------------------------------- /app/assets/images/basic-shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcooper/ng2-fundamentals/HEAD/app/assets/images/basic-shield.png -------------------------------------------------------------------------------- /app/assets/images/angularconnect-shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcooper/ng2-fundamentals/HEAD/app/assets/images/angularconnect-shield.png -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es5", 4 | "module": "commonjs", 5 | "moduleResolution": "node", 6 | "sourceMap": true, 7 | "emitDecoratorMetadata": true, 8 | "experimentalDecorators": true, 9 | "removeComments": false, 10 | "noImplicitAny": false, 11 | "suppressImplicitAnyIndexErrors": true, 12 | "typeRoots": [ 13 | "./node_modules/@types/" 14 | ] 15 | }, 16 | "compileOnSave": true, 17 | "exclude": [ 18 | "node_modules/*", 19 | "**/*-aot.ts" 20 | ] 21 | } -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- 1 | /* app css stylesheet */ 2 | .hoverwell:hover { 3 | background-color: #485563; 4 | cursor: pointer; 5 | } 6 | 7 | .container { 8 | padding-top: 10px; 9 | } 10 | 11 | .pointable { 12 | cursor: pointer; 13 | } 14 | 15 | button { 16 | color: #555; 17 | } 18 | 19 | [hidden] { 20 | display: none !important; 21 | } 22 | 23 | .toast-success { 24 | background-color: #51a351; 25 | } 26 | .toast-error { 27 | background-color: #bd362f; 28 | } 29 | .toast-info { 30 | background-color: #2f96b4; 31 | } 32 | .toast-warning { 33 | background-color: #f89406; 34 | } -------------------------------------------------------------------------------- /readme.MD: -------------------------------------------------------------------------------- 1 | Angular 2+ Fundamentals Course 2 | ======================== 3 | This is the getting started package for the Pluralsight course on Angular 2 Fundamentals found here: http://app.pluralsight.com/courses/angular-fundamentals 4 | 5 | **Course Status** 6 | 7 | The course is currently up-to-date with **Angular 4.0**. 8 | 9 | Note: This is the course for all versions of Angular since Angular 2.0. The Angular team plans to release a new major version every 6 months and this page will tell you how up-to-date the course is. 10 | 11 | 12 | Getting Started 13 | --------------- 14 | Be sure you're running the recommended node version, which is 6.3.0+: `node --version` 15 | 16 | Follow along with the course linked above. To start the server: 17 | 18 | ``` 19 | npm install 20 | npm start 21 | ``` 22 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |