Basic Svelte
Introduction
Bindings
Classes and styles
Attachments
Advanced Svelte
Advanced reactivity
Motion
Advanced bindings
Advanced transitions
Context API
Special elements
<script module>
Next steps
Basic SvelteKit
Introduction
Routing
Loading data
Headers and cookies
Shared modules
API routes
$app/state
Errors and redirects
Advanced SvelteKit
Page options
Link options
Advanced routing
Advanced loading
Environment variables
Conclusion
The updated state is true if a new version of the app has been deployed since the page was first opened.
Version polling happens once an hour by default. SvelteKit also checks for a new version after receiving responses to data requests, remote function calls and form actions, and when the tab gains focus or becomes visible. This exercise sets a shorter version.pollInterval in vite.config.js as a demo override.
<script>
import { page, navigating, updated } from '$app/state';
</script><script lang="ts">
import { page, navigating, updated } from '$app/state';
</script>Version checks only happen in production, not during development. For that reason, updated.current will always be false in this tutorial.
You can manually check for new versions, regardless of pollInterval, by calling updated.check().
{#if updated.current}
<div class="toast">
<p>
A new version of the app is available
<button onclick={() => location.reload()}>
reload the page
</button>
</p>
</div>
{/if}Prior to SvelteKit 2.12, you had to use
$app/storesfor this, which provides an$updatedstore with the same information. It was removed in favor of$app/statein SvelteKit 3.
SvelteKit 2 did not poll by default and had no checks on backend requests.
<h1>home</h1>
<p>this is the home page.</p>