-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(guide/replication): add a note that it's not something you're li…
…kely to need to do (#3174) Co-authored-by: ludens <[email protected]> Co-authored-by: Kevin Ingersoll <[email protected]>
- Loading branch information
1 parent
e6147b2
commit be0860f
Showing
4 changed files
with
31 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
export default { | ||
"replicating-onchain-state": "Replicating onchain state", | ||
"hello-world": "Hello World", | ||
"extending-a-world": "Extending a World", | ||
"adding-delegation": "Adding Delegation", | ||
"modules": "Writing MUD Modules", | ||
emojimon: "Emojimon", | ||
testing: "Testing", | ||
"replicating-onchain-state": "Replicating onchain state", | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Templates | ||
|
||
MUD templates include client code as well as an onchain MUD `World`. | ||
These integrations include data synchronization, which gives the client a read-only copy of the data in the [MUD tables](/store/tables). | ||
|
||
## Official templates | ||
|
||
We wrote a number of integrations between TypeScript and MUD. | ||
|
||
- [Vanilla](/templates/typescript/vanilla) | ||
- [React using RECS](/templates/typescript/react-ecs) | ||
- React using Zustand | ||
- [Three.js](/templates/typescript/threejs) | ||
|
||
## Community templates | ||
|
||
There are a number of other templates written by developers who wanted to use different frameworks with MUD. | ||
|
||
**Disclaimer:** We appreciate the people who created these integrations, but as we did not verify them ourselves, we cannot guarantee their functionality or security. | ||
|
||
- [Vue](/templates/typescript/vue) | ||
- [Godot](/templates/godot) | ||
- [Progressive Web App (mobile)](/templates/pwa) | ||
- [Swift](/templates/swift) | ||
- [Svelte](/templates/svelte) | ||
- [Unity](/templates/unity) | ||
- [Nethereum](/templates/nethereum) |