Skip to content

Commit cae3968

Browse files
committed
Updated readme with instructions
1 parent 7676b1d commit cae3968

File tree

1 file changed

+29
-2
lines changed

1 file changed

+29
-2
lines changed

readme.md

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,39 @@
11
Expense Manager with Angular and TypeScript
22
===============
33

4-
This application was originally written in JavaScript and then converted to
5-
TypeScript to show how TS can be used in Angular applications.
4+
This application demonstrates how Angular and TypeScript can be used together. It relies on a
5+
Node.js RESTful backend service. Note that the Node.js service relies on static data so
6+
changes to data won't presist across node process restarts.
7+
68

79
The application uses:
810

911
* Angular
1012
* TypeScript
13+
* Node.js
14+
15+
# Usage
16+
17+
1. Install global dependencies **if necessary**
18+
19+
npm install -g gulp-cli tsd
20+
21+
2. Install node packages:
22+
23+
npm install
24+
25+
3. Retrieve typescript definitions list
26+
27+
tsd reinstall -so
28+
29+
4. Run gulp
30+
31+
gulp
32+
33+
5. Launch the server
34+
35+
node server.js
36+
37+
6. Open browser at <http://localhost:8000/>
1138

1239
The application was written by [Dan Wahlin](http://twitter.com/danwahlin).

0 commit comments

Comments
 (0)