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
feature(StorageService): demo local Storage per platform
StorageService used and implemented as localStorage on the browser & in
memory variable on the server.
Added information on how to stay updated with the repository.
ClosesTrilonIO#35ClosesTrilonIO#34
> This is a manual changelog at the moment to track the Major changes in the Repo.
4
+
5
+
## How do I stay up to date when Updates happen in this Starter?
6
+
7
+
Typically when you want to update your App with the latest from this repo, you should be able to get the latest from here
8
+
and (depending on what has changed), you should be able to just drop in your Client & Server folders on top.
9
+
10
+
My goal is to point out the more **"Major"** issues & changes below, that might have affected the application in Client/Server aspects.
11
+
For example, some additions made to each platform to add a new Feature (such as Storage that's using dependeny injection).
12
+
Of course if some feature like that isn't important to you, there's no need to copy it over! A lot examples here are to get you up &
13
+
running with a lot of the eco-system of .NET Core & Angular (v2+).
14
+
15
+
Don't hesitate to create an Issue with anything you run into, and Pull-Requests are always welcome for basic implementations of new features & fixes
16
+
you think others would benefit from as well!
17
+
18
+
### 1.0.0-beta.3 - 1/23/2017
19
+
20
+
-[Closes #35](https://github.com/MarkPieszak/aspnetcore-angular2-universal/issues/35) Implemented Storage service for Browser (localStorage) & Server (in memory variable)
21
+
22
+
-[Closes #34](https://github.com/MarkPieszak/aspnetcore-angular2-universal/issues/45) Fix karma to handle Angular testing [commit](https://github.com/MarkPieszak/aspnetcore-angular2-universal/commit/1777f43ca23ede6c46d3cd37c1a2d35605a1355d)
23
+
24
+
3
25
### 1.0.0-beta.2 - 1/14/2017
4
26
5
27
- Update AppComponent to be `<app-root />` to satisfy TSLint. `bootstrap-server.ts` updated as well.
6
28
7
29
- Partial revert of ng2-bootstrap dependency down to **1.1.16**, 1.1.20+ require ng 2.4.x (unsupported by Universal atm) [commit](https://github.com/MarkPieszak/aspnetcore-angular2-universal/commit/524df2df00113d0ee2953b44ae40167112192f89)
8
30
9
-
-[#33](https://github.com/MarkPieszak/aspnetcore-angular2-universal/issues/33) Update CSS for bootstrap4 & fix ng2-bootstrap API changes [commit](https://github.com/MarkPieszak/aspnetcore-angular2-universal/commit/d0c0e7d98b9ac043be9880ba2656ddf0f0f2222d)
31
+
-[Closes #33](https://github.com/MarkPieszak/aspnetcore-angular2-universal/issues/33) Update CSS for bootstrap4 & fix ng2-bootstrap API changes [commit](https://github.com/MarkPieszak/aspnetcore-angular2-universal/commit/d0c0e7d98b9ac043be9880ba2656ddf0f0f2222d)
Copy file name to clipboardExpand all lines: README.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,7 @@ This repository is maintained by [Angular Universal](https://github.com/angular/
10
10
Angular2, not only for the client-side, but to be rendered on the *server* for instant application paints
11
11
(*Note*: If you don't need Universal (SSR) [read here](https://github.com/MarkPieszak/aspnetcore-angular2-universal#faq) on how to disable it).
12
12
13
+
**How do I stay up-to-date with the latest updates & changes of the repo?**[Check out the CHANGELOG here](https://github.com/MarkPieszak/aspnetcore-angular2-universal/blob/master/CHANGELOG.md)
13
14
14
15
This is meant to be a Feature-Rich Starter application containing all of the latest technologies, best build systems available, and include many real-world examples and libraries needed in todays Single Page Applications (SPAs).
15
16
@@ -93,7 +94,8 @@ to: `ASPNETCORE_ENVIRONMENT=Production`, then run `webpack` manually. Then you c
93
94
-[ ] Example of NgRx (redux) transfering App State from server to client - track [#29](https://github.com/MarkPieszak/aspnetcore-angular2-universal/issues/29)
94
95
-[ ] AoT (Ahead-of-time compilation) production builds - track [#10](https://github.com/MarkPieszak/aspnetcore-angular2-universal/issues/10)
95
96
-[ ] SignalR (Websockets) example - track [#39](https://github.com/MarkPieszak/aspnetcore-angular2-universal/issues/39)
96
-
-[ ] Update components real unit & e2e tests - track [#45](https://github.com/MarkPieszak/aspnetcore-angular2-universal/issues/45)
97
+
-[x] Update components real unit & e2e tests - track [#45](https://github.com/MarkPieszak/aspnetcore-angular2-universal/issues/45)
98
+
-[x]~~Storage Service (localStorage) showcasing Dependency Injection per-platform - [#35](https://github.com/MarkPieszak/aspnetcore-angular2-universal/issues/35)~~
97
99
-[x]~~NgRx (reactive Redux application state management)~~
98
100
-[x]~~HMR State management (hold state when hot reload occurs)~~
0 commit comments