# api.svelte.dev **Repository Path**: mirrors_sveltejs/api.svelte.dev ## Basic Information - **Project Name**: api.svelte.dev - **Description**: The API worker source for https://api.svelte.dev - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-03-29 - **Last Updated**: 2025-08-30 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Svelte API Worker > Live: [https://api.svelte.dev](https://api.svelte.dev) ## Install ```sh $ pnpm install ``` ## Development We use [Wrangler](https://developers.cloudflare.com/workers/cli-wrangler) for its local development server. This is effectively a proxy-service that (nearly) replicates the Cloudflare Worker runtime. Anyone can develop this repository locally. Simply copy the `wrangler.example.toml` file as your own `wrangler.toml` file and insert the appropriate values. These values may (and should) be your own personal account values. This way any changes you make will not affect the live, production server and/or data. ```sh $ cp wrangler.example.toml wrangler.toml ``` ## Build ```sh $ pnpm run build ``` ## Deploy > **Important:** For the relevent Svelte maintainers only~! Deployment is handled by GitHub Actions, and is triggered automatically via `tag` events. Tag & release this as if it were any other npm module – but don't publish it to the registry :wink: ```sh # Format: # npm version && git push origin master --tags # Example: $ npm version patch && git push origin master --tags ```