rest-hooks
Advanced tools
Comparing version 6.0.0-beta.5 to 6.0.0-beta.6
{ | ||
"name": "rest-hooks", | ||
"version": "6.0.0-beta.5", | ||
"version": "6.0.0-beta.6", | ||
"description": "Asynchronous data framework for React", | ||
@@ -106,4 +106,4 @@ "sideEffects": false, | ||
"@babel/runtime": "^7.7.2", | ||
"@rest-hooks/core": "^2.0.0-beta.5", | ||
"@rest-hooks/endpoint": "^2.0.0-beta.1" | ||
"@rest-hooks/core": "^2.0.0-beta.6", | ||
"@rest-hooks/endpoint": "^2.0.0-beta.2" | ||
}, | ||
@@ -118,4 +118,3 @@ "peerDependencies": { | ||
} | ||
}, | ||
"gitHead": "f06496334033c7e4f9e588156d71f8499b21d70f" | ||
} | ||
} |
@@ -9,8 +9,9 @@ # ![๐๐ฃ Rest hooks](./rest_hooks_logo_and_text.svg?sanitize=true) | ||
Dynamic data at scale. Performance, consistency, typing for REST, proto, GraphQL, websockets and more. | ||
Asynchronous dynamic data at scale. Performance, data integrity, and typing for [REST](https://resthooks.io/docs/rest/usage), proto, [GraphQL](https://resthooks.io/docs/graphql/usage), websockets and more. | ||
<div align="center"> | ||
**[๐Read The Docs](https://resthooks.io)** | [๐Getting Started](https://resthooks.io/docs/getting-started/installation) | | ||
[๐ฎDemo](https://github.com/Rest-Hooks/todo-example) | ||
**[๐Read The Docs](https://resthooks.io/docs)** | [๐Getting Started](https://resthooks.io/docs/getting-started/installation) | | ||
[๐ฎTodo Demo](https://github.com/coinbase/rest-hooks/tree/master/examples/todo-app) | | ||
[๐ฎGithub Demo](https://github.com/coinbase/rest-hooks/tree/master/examples/github-app) | ||
@@ -23,3 +24,3 @@ </div> | ||
class ArticleResource extends Resource { | ||
readonly id: number | undefined = undefined; | ||
readonly id: string = ''; | ||
readonly title: string = ''; | ||
@@ -62,3 +63,3 @@ readonly body: string = ''; | ||
For the small price of 10kb gziped. [๐Get started now](https://resthooks.io/docs/getting-started/installation) | ||
For the small price of 8kb gziped. [๐Get started now](https://resthooks.io/docs/getting-started/installation) | ||
@@ -69,4 +70,5 @@ ## Features | ||
- [x] ๐ React [Suspense](https://resthooks.io/docs/guides/loading-state) support | ||
- [x] โ๏ธ React [Concurrent mode](https://reactjs.org/docs/concurrent-mode-patterns.html) compatible | ||
- [x] ๐ฃ Simple declarative API | ||
- [x] ๐งต React 18 [Concurrent mode](https://reactjs.org/docs/concurrent-mode-patterns.html) compatible | ||
- [x] ๐ฃ [Declarative API](https://resthooks.io/docs/getting-started/data-dependency) | ||
- [x] ๐ Composition over configuration | ||
- [x] ๐ฐ Normalized response [configurable](https://resthooks.io/docs/guides/resource-lifetime) caching | ||
@@ -73,0 +75,0 @@ - [x] ๐ฅ Tiny bundle footprint |
Sorry, the diff of this file is too big to display
350190
87