Modified by Tyler Rockwood
This repository holds the TypeScript source code of the angular.io quickstart, the foundation for most of the documentation samples and potentially a good starting point for your application.
This is not the perfect arrangement for your application. It is not designed for production. It exists primarily to get you started quickly with learning and prototyping in Angular 2
Check out the solution branch for the finished code after the talk! 😃
- Node installed
- A command line (GitBash if you're a Windows Developer) with the ability to run
npm
. - A text editor/IDE like Atom, Sublime Text or WebStorm.
- A brain with former Web Development experience (just anything really)
Clone this repo into new project folder (e.g., hangman
).
git clone https://github.com/RoseHulmanHackers/Ng2Talk hangman
cd my-proj
We have no intention of updating the source on RoseHulmanHackers/Ng2Talk
.
Discard everything "git-like" by deleting the .git
folder.
rm -rf .git
You could start writing code now and throw it all away when you're done. If you'd rather preserve your work under source control, consider taking the following steps.
Initialize this project as a local git repo and make the first commit:
git init
git add .
git commit -m "Initial commit"
Create a remote repository for this project on the service of your choice.
Grab its address (e.g. https://github.com/<my-org>/my-proj.git
) and push the local repo to the remote.
git remote add origin <repo-address>
git push -u origin master
Install the npm packages described in the package.json
and verify that it works:
Attention Windows Developers: You must run all of these commands in administrator mode
npm install
npm start
The npm start
command first compiles the application,
then simultaneously re-compiles and runs the lite-server
.
Both the compiler and the server watch for file changes.
Shut it down manually with Ctrl-C.
You're ready to write your hangman application! (wait or help your neighbor)
If you're bored, here is some other information, some pre-existing from the quickstart, some added by Tyler Rockwood, which links to more information about Angular2 and it's stack.
We've captured many of the most useful commands in npm scripts defined in the package.json
:
npm start
- runs the compiler and a server at the same time, both in "watch mode".npm run tsc
- runs the TypeScript compiler once.npm run tsc:w
- runs the TypeScript compiler in watch mode; the process keeps running, awaiting changes to TypeScript files and re-compiling when it sees them.npm run lite
- runs the lite-server, a light-weight, static file server, written and maintained by John Papa and Christopher Martin with excellent support for Angular apps that use routing.npm run typings
- runs the typings tool.npm run postinstall
- called by npm automatically after it successfully completes package installation. This script installs the TypeScript definition files this app requires.
The testing for this project has been stripped out, because this talk will not be focusing on that 😄