|
1 | 1 | # FastUI |
2 | 2 |
|
3 | | -[](https://github.com/samuelcolvin/FastUI/actions?query=event%3Apush+branch%3Amain+workflow%3ACI) |
| 3 | +[](https://github.com/pydantic/FastUI/actions?query=event%3Apush+branch%3Amain+workflow%3ACI) |
4 | 4 | [](https://pypi.python.org/pypi/fastui) |
5 | | -[](https://github.com/samuelcolvin/FastUI) |
6 | | -[](https://github.com/samuelcolvin/FastUI/blob/main/LICENSE) |
| 5 | +[](https://github.com/pydantic/FastUI) |
| 6 | +[](https://github.com/pydantic/FastUI/blob/main/LICENSE) |
7 | 7 |
|
8 | 8 | **Please note:** FastUI is still an active work in progress, do not expect it to be complete. |
9 | 9 |
|
@@ -113,7 +113,7 @@ async def html_landing() -> HTMLResponse: |
113 | 113 |
|
114 | 114 | Which renders like this: |
115 | 115 |
|
116 | | - |
| 116 | + |
117 | 117 |
|
118 | 118 | Of course, that's a very simple application, the [full demo](https://fastui-demo.onrender.com) is more complete. |
119 | 119 |
|
@@ -160,7 +160,7 @@ Building an application this way has a number of significant advantages: |
160 | 160 | - You only need to write code in one place to build a new feature — add a new view, change the behavior of an existing view or alter the URL structure |
161 | 161 | - Deploying the front and backend can be completely decoupled, provided the frontend knows how to render all the components the backend is going to ask it to use, you're good to go |
162 | 162 | - You should be able to reuse a rich set of opensource components, they should end up being better tested and more reliable than anything you could build yourself, this is possible because the components need no context about how they're going to be used (note: since FastUI is brand new, this isn't true yet, hopefully we get there) |
163 | | -- We can use Pydantic, TypeScript and JSON Schema to provide guarantees that the two sides are communicating with an agreed schema (note: this is not complete yet, see [#18](https://github.com/samuelcolvin/FastUI/issues/18)) |
| 163 | +- We can use Pydantic, TypeScript and JSON Schema to provide guarantees that the two sides are communicating with an agreed schema (note: this is not complete yet, see [#18](https://github.com/pydantic/FastUI/issues/18)) |
164 | 164 |
|
165 | 165 | In the abstract, FastUI is like the opposite of GraphQL but with the same goal — GraphQL lets frontend developers extend an application without any new backend development; FastUI lets backend developers extend an application without any new frontend development. |
166 | 166 |
|
|
0 commit comments