Dynamic data at scale. Performance, consistency, typing for REST, proto, GraphQL, websockets and more.
class ArticleResource extends Resource {
readonly id: string = '';
readonly title: string = '';
readonly body: string = '';
pk() { return this.id; }
static urlRoot = '/articles/';
}
const article = useResource(ArticleResource.detail(), { id });
return (
<>
<h2>{article.title}</h2>
<p>{article.body}</p>
</>
);
const update = useFetcher(ArticleResource.update());
return <ArticleForm onSubmit={data => update({ id }, data)} />;
const price = useResource(PriceResource.detail(), { symbol });
useSubscription(PriceResource.detail(), { symbol });
return price.value;
For the small price of 7kb gziped. 🏁Get started now
Author: coinbase
Live Demo: https://resthooks.io/
GitHub: https://github.com/coinbase/rest-hooks
#reactjs #javascript #react