- Shoutouts announcements
- Presentations, demos
- Knowledge exchange
- 15-20 minutes moderated
- Networking
From Washington DC: It's important.
- We are respectfull, tolerant and helpful.
- We are open to everyone interested in our topics.
- We want to promote and help open source.
- Jobs, Projects?
- Meetups, Events, Trainings?
- News?
- Angular 2, 3, 4, 5, 6
- Semantic Versioning
- Router v3 ==> Router v4 + Angular v4
- preloading of layzloaded modules
- animations improvements
- AOT support for @angular/upgrade - AngularJS 1.x upgrade
- Router improvements for upgrading
- Smaller AOT output (every version the filesize decreases)
- Guides for usage with ES5 (why?) and ES2015++
- Please if you created anything - share it.
Backend in 5 minutes
npm -g install json-server
json-server -w somedata.json
http://localhost:3000/
- Integration with server
- UI Library, Component CSS, Global CSS
- ... ? topics ?
- angular/http, observables (rxjs)
- websockets
- firebase
- pouchdb
- graphql
- ???
src/styles.(css|sass|less)
You could use basic Bootstrap + Custom styles.
[App] <tag class="some-class">
|
|_________
| |
[List] [Detail] <tag class="some-class">
[App]
||
||____________________
| | |
| [md-menu] [md-menu-item]{css}
|
|
|--------[Detail]
|
[List]
|__________________________
| |
[md-list] <--- [md-list-item]{css}
Global-CSS | vs | Component-CSS |
---|---|---|
Common concept | New way | |
Easy to understand | Less Risk | |
Style focussed | Component focussed | |
Independant | Reusability | |
"Your Structure" | Technical Complexity | |
Template Developer | Frontend "Developer" |