Skip to content

Commit e24e747

Browse files
committed
docs(readme): update
1 parent 60c00db commit e24e747

File tree

5 files changed

+17
-15
lines changed

5 files changed

+17
-15
lines changed

Client/app/state/app.reducer.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export const LOGOUT_USER = 'LOGOUT_USER';
1717
export const appReducer: ActionReducer<AppStateRecord> = (state = makeInitialState(), action: Action) => {
1818

1919
switch (action.type) {
20-
20+
2121
case LOGIN_USER:
2222
console.log(action.payload);
2323
// state.set('loggedInUser', action.payload);
@@ -30,7 +30,7 @@ export const appReducer: ActionReducer<AppStateRecord> = (state = makeInitialSta
3030
default:
3131
return state;
3232
}
33-
}
33+
};
3434

3535
// Initial AppState, used to bootstrap the reducer.
3636
function makeInitialState() {

Client/app/state/hmr.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,4 @@ export function handleHmr(
5959
// `handleHmr` again...
6060
});
6161

62-
}
62+
}

Client/shared/cache/api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ export class HttpCacheService {
4444
.do(json => { this._cache.set(key, json); })
4545
.share();
4646
}
47-
}
47+
}

README.md

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@
22

33
### What is this repo?
44

5-
This repository is maintained by Angular Universal and is meant to be an advanced starter for both ASP.NET Core using
5+
This repository is maintained by [Angular Universal](https://github.com/angular/universal) and is meant to be an advanced starter for both ASP.NET Core using
66
Angular2, not only for the client-side, but to be rendered on the *server*.
77

8-
This is meant to be an advanced starter, feature-rich, and include many real-world examples and libraries needed in todays Single Page Applications (SPAs).
8+
This is meant to be a Feature-Rich Starter application, and include many real-world examples and libraries
9+
needed in todays Single Page Applications (SPAs).
910

10-
Currently in Beta - some improvements & functionality to come, 1.0 version will be released very shortly.
11+
[11/13] Fully operational, some improvements & new functionality to come, keep an eye out for the latest updates!
1112

1213
---
1314

@@ -28,25 +29,26 @@ Currently in Beta - some improvements & functionality to come, 1.0 version will
2829
2930
- Angular2
3031
- Featuring Server-side rendering (Angular Universal)
31-
- Faster paints, better SEO, deep-linking, etc
32+
- Faster paints, better SEO, deep-linking, etc
33+
- NgRx - Reactive Redux state management architecture
3234
- Baked in best-practices (follows Angular style guide)
3335
- Bootstrap4 (with ng2-bootstrap) - can be rendered on the server
3436

3537
- Webpack build system
3638
- HMR : Hot Module Reloading/Replacement
39+
- NgRx state management integrated to hold state between HMR builds!
3740
- Production builds
41+
- Webpack Dashboard
3842

3943
- Testing frameworks
4044
- Unit testing with Karma/Jasmine
4145

4246
- Productivity
4347
- Codelyzer (for Real-Sime static code analysis)
4448
- VSCode & Atom provide real-time analysis out of the box.
45-
- **NOTE**: In Visual Studio 2015, for codelyzer to work, you must *at least* have .NET Core >= **1.1.0-preview1** and Update 3 installed. You can find the [1.1.0 download here](https://github.com/dotnet/core/blob/master/release-notes/preview-download.md).
46-
49+
- **NOTE**: Does not fully work with Visual Studio yet. (Even with 1.1.0-preview)
4750

48-
- asp.NET Core 1.0.1
49-
- Install 1.1 preview 1 & SDK 1.0 Preview 2.1 for the best results with codelyzer etc [1.1.0 download here](https://github.com/dotnet/core/blob/master/release-notes/preview-download.md).
51+
- ASP.NET Core 1.0.1
5052
- RestAPI integration
5153
- Integration with NodeJS to provide pre-rendering, as well as any other Node module asset you want to use.
5254

@@ -66,9 +68,9 @@ Currently in Beta - some improvements & functionality to come, 1.0 version will
6668

6769
# UPCOMING Features:
6870

69-
- [ ] NgRx (reactive Redux application state management)
70-
- [ ] HMR State management
7171
- [ ] Websockets example
72+
- [x] ~~NgRx (reactive Redux application state management)~~
73+
- [x] ~~HMR State management~~
7274
- [x] ~~Unit testing with Karma/Jasmine~~
7375
- [x] ~~Add e2e protractor tests~~
7476
- [x] ~~Add codelyzer for static code analysis~~

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aspnetcore-angular2-universal-starter",
3-
"version": "0.6.2",
3+
"version": "1.0.0-beta.1",
44
"author": {
55
"name": "Mark Pieszak",
66
"email": "[email protected]",

0 commit comments

Comments
 (0)