You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-5Lines changed: 2 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,7 @@ There is a server that the app hits for data. The data is only stored in memory,
21
21
In the `server` directory
22
22
23
23
* Install nvm and node-4.0.0
24
+
* Install dependencies: `npm install`
24
25
* Run it: `npm start`
25
26
26
27
It has sample data in the `models.js` file. For example, there is a user bleonard (password: "sample") that you can log in as.
@@ -42,7 +43,7 @@ We'll get there, but we're still working on the iOS version.
42
43
43
44
The sole method of navigation (what's showing on the screen and where the back button goes) is via urls. We parse urls to determine the route stack. There is some stuff to make "related" url navigation look "right" (push and pop). Making everything addressable by URL is great for deep linking and forces each screen to be able to load all on it's own from simple data.
44
45
45
-
The Router handles parsing different routes depending if you are logged in or not. The urls must be ablet o represent the entire navigation stack, so that means they can be recursive like my friend's friend's friend's feed (sample://dashboard/follows/john/follows/sarah/follows/amy/posts).
46
+
The Router handles parsing different routes depending if you are logged in or not. The urls must be able to represent the entire navigation stack, so that means they can be recursive like my friend's friend's friend's feed (sample://dashboard/follows/john/follows/sarah/follows/amy/posts).
46
47
47
48
#### Flux
48
49
@@ -108,7 +109,3 @@ We'll have to figure this one out eventually.
0 commit comments