angular-first-look-examples
angular-first-look-examples copied to clipboard
angular first look for pluralsight
Angular First Look
For Pluralsight
The code in this repo is the source for what becomes the plunkers located https://github.com/johnpapa/angular-first-look-hosted
Note: The plunkers are the recommended way to run the code. However, if you wish to explore, instructions can be found below. This repo is not part of the course ... this is intended to be extra credit ... fun ... for those who are curious :)
Getting Started
Fork and clone this repo ...
git clone [email protected]:johnpapa/angular-first-look-examples.git ng-ex
cd ng-ex
rm -rf .git/
npm i
Prep the Examples
cd _examples
npm i
cd ..
npm run all
Run an example
cd _examples/component-simple/
npm start
Each example is located in its own folder under _examples/
. Feel free to explore them. You may run npm start
in those respective folders, if you wish to run them locally.
Reminder ... The other files in this repo are here for helping create the plunkers. Focus only on the files in the_examples/xxx
folders.