├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | typings 3 | node_modules 4 | lib 5 | dist 6 | jspm_packages 7 | link-checker-results.txt 8 | npm-debug.log 9 | **/*npm-debug.log.* 10 | *.js.map 11 | _test-output 12 | _temp 13 | .editorconfig 14 | CHANGELOG.md 15 | app/**/*.js 16 | app/**/*.js.map -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Angular 2+ Examples 2 | 3 | ## [Get Angular Mastery Course ](http://kck.st/2p3nNAL) ## 4 | 5 | **Usage** 6 | - git clone a branch `git clone -b git@github.com:jakblak/angular_Examples.git` 7 | - *cd* into your folder 8 | - download modules using `npm install` or `yarn` 9 | - use `npm start` to load up the app 10 | - if `socketChat` install modules in *public* folder as well 11 | 12 | ### filter ### 13 | - part 1 of Geonames project + filter example 14 | 15 | ### socketChat ### 16 | - build chat app using Angular and Node 17 | - make sure to install modules in both root and public folders 18 | - start the app with node server.js and navigate to localhost:8000 19 | 20 | ### sort ### 21 | - part 2 of Geonames project + sort example --------------------------------------------------------------------------------