Photo by Dakota Corbin on Unsplash
By Falk2 (Own work) [CC BY-SA 4.0], via Wikimedia Commons
Every framework you’ve ever seen is really just an echo of this statement:
My language sucks!
Robert C. Martin (Uncle Bob)
Ehi guys, if I would need to have data binding without using Angular/React or whatever, what do you suggest?
@Component(...)
export class MyComponent implements OnInit {
results: string[];
constructor(private http: HttpClient) {}
ngOnInit(): void {
this.http.get('/api/items').subscribe(data => {
this.results = data['results'];
});
}
}
@Component(...)
export class MyComponent implements OnInit {
results: string[];
ngOnInit(): void {
window.fetch('/api/items')
.then(r => r.json())
.(data => {
this.results = data['results'];
});
}
}
Frameworkless
Full Framework
The Right Mix for your business needs
...architectures should be driven by the underlying technical requirements of the system, rather than speculative planning for a future that may change.
Thoughtworks Technology Radar
By Falk2 (Own work) [ CC BY-SA 4.0 ], via Wikimedia Commons
Photo by paolo candelo on Unsplash
f.strazzullo@extrategy.net
@TheStrazz86
https://github.com/francesco-strazzullo
https://medium.com/@TheStrazz86
https://slides.com/francescostrazzullo