This is a simple sveltekit project which shows how to sync state between a popup window and the main window.
Find a file
2025-05-19 14:06:37 +02:00
src Chore: initial commit 2025-05-19 14:06:37 +02:00
static Chore: initial commit 2025-05-19 14:06:37 +02:00
.gitignore Chore: initial commit 2025-05-19 14:06:37 +02:00
.npmrc Chore: initial commit 2025-05-19 14:06:37 +02:00
package-lock.json Chore: initial commit 2025-05-19 14:06:37 +02:00
package.json Chore: initial commit 2025-05-19 14:06:37 +02:00
README.md Chore: initial commit 2025-05-19 14:06:37 +02:00
svelte.config.js Chore: initial commit 2025-05-19 14:06:37 +02:00
tsconfig.json Chore: initial commit 2025-05-19 14:06:37 +02:00
vite.config.ts Chore: initial commit 2025-05-19 14:06:37 +02:00

sveltekit-popup-test

This is a simple sveltekit project which shows how to sync state between a popup window and the main window.

Creating a project

If you're seeing this, you've probably already done this step. Congrats!

# create a new project in the current directory
npx sv create

# create a new project in my-app
npx sv create my-app

Developing

Once you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:

npm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open

Building

To create a production version of your app:

npm run build

You can preview the production build with npm run preview.

To deploy your app, you may need to install an adapter for your target environment.