Skip to content
This repository was archived by the owner on Oct 22, 2025. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Public-facing projects:

- **RivetKit** (you are here): Lightweight TypeScript library for building Rivet Actors
- **[Rivet Engine](https://github.com/rivet-dev/rivet)** : Engine that powers Rivet Actors at scale — completely optional
- **[Rivet Studio](https://github.com/rivet-dev/rivet/tree/main/frontend/apps/studio)**: Like Postman, but for Rivet Actors
- **[Rivet Studio](https://github.com/rivet-dev/rivet/tree/main/frontend/apps/studio)**: Like Chrome DevTools, but for Rivet Actors
- **[Rivet Documentation](https://github.com/rivet-dev/rivet/tree/main/site/src/content/docs)**

## Get Started
Expand Down Expand Up @@ -218,16 +218,16 @@ Seamlessly integrate RivetKit with your favorite frameworks, languages, and tool
- <img src=".github/media/integrations/tinybase.svg" height="16" alt="TinyBase" />&nbsp;&nbsp;[TinyBase](https://github.com/rivet-dev/rivetkit/issues/910) *(Help Wanted)*
- <img src=".github/media/integrations/yjs.svg" height="16" alt="Yjs" />&nbsp;&nbsp;[Yjs](https://github.com/rivet-dev/rivetkit/issues/911) *(Help Wanted)*

## Local Development with the Studio
## Local Development with the Rivet Inspector

Rivet Studio is like like Postman, but for all of your stateful serverless needs. [Visit the Studio →](https://studio.rivet.dev)
Rivet Inspector is like like Chrome DevTools, but for all of your stateful serverless needs. [Visit the Inspector →](https://inspect.rivet.dev)

- **Live State Inspection**: View and edit your actor state in real-time as messages are sent and processed
- **REPL**: Debug your actor in real-time - call actions, subscribe to events, and interact directly with your code
- **Connection Inspection**: Monitor active connections with state and parameters for each client
- **Hot Reload Code Changes**: See code changes instantly without restarting - modify and test on the fly

![Rivet Studio](.github/media/screenshots/studio/simple.png)
![Rivet Inspector](.github/media/screenshots/studio/simple.png)

## Community & Support

Expand Down
3 changes: 2 additions & 1 deletion packages/rivetkit/src/inspector/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ const defaultEnabled = () => {
const defaultInspectorOrigins = [
"http://localhost:43708",
"http://localhost:43709",
"https://studio.rivet.dev",
"https://studio.rivet.gg",
"https://inspect.rivet.dev",
];

const defaultCors: CorsOptions = {
Expand Down
2 changes: 1 addition & 1 deletion packages/rivetkit/src/inspector/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export function getInspectorUrl(runConfig: RunConfigInput | undefined) {
return "disabled";
}

const url = new URL("https://studio.rivet.dev");
const url = new URL("https://inspect.rivet.dev");

url.searchParams.set("t", accessToken);

Expand Down
Loading