File tree Expand file tree Collapse file tree 1 file changed +29
-2
lines changed Expand file tree Collapse file tree 1 file changed +29
-2
lines changed Original file line number Diff line number Diff line change 1
1
Expense Manager with Angular and TypeScript
2
2
===============
3
3
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
+
6
8
7
9
The application uses:
8
10
9
11
* Angular
10
12
* 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/ >
11
38
12
39
The application was written by [ Dan Wahlin] ( http://twitter.com/danwahlin ) .
You can’t perform that action at this time.
0 commit comments