The code in this repo is the source for what becomes the plunkers located https://github.com/johnpapa/angular2-first-look
The plunkers are the recommended way to run the code. However, if you wish to explore, instructions can be found below.
Fork and clone this repo ...
git clone [email protected]:johnpapa/a2-first-look.git a2firstlook
cd a2firstlook
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.