I use ember-data in my ember.js projects, now I learn react. My question is: what technics are used in react to achieve the same functionality as ember-data? I'd like to:
have some model's methods like:
fullName(){ return this.get('name')+' '+this.get('secondName'); }
ember-data
is a library, that handles remote data retrieve/send operations. To handle those remote operations, ember-data
provides models, adapters, serializers etc. Btw, ember-data
is an implementation of JSON:API.
ember-data
description from the README.md:
ember-data is a library for robustly managing data in applications built with Ember.js.
...
It provides many of the facilities you'd find in server-side ORMs like...
So, if you search it through google with "react orm", you can find some libraries, such as:
And if you visit JSON:API implementations page, you can find other libraries that implements the JSON:API and plays well with redux or react.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With