Watch
3
0
Fork
You've already forked svelte-working-with-apis
0
No description
This repository has been archived on 2026-07-17. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
  • Svelte 72%
  • JavaScript 23.3%
  • HTML 4.7%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2025-09-10 21:53:43 -06:00
.vscode Initial commit 2025-09-10 20:33:39 -06:00
src feat(fox): learning project with video finished 2025-09-10 21:26:32 -06:00
static Initial commit 2025-09-10 20:33:39 -06:00
.gitignore Initial commit 2025-09-10 20:33:39 -06:00
.npmrc Initial commit 2025-09-10 20:33:39 -06:00
.prettierignore Initial commit 2025-09-10 20:33:39 -06:00
.prettierrc Initial commit 2025-09-10 20:33:39 -06:00
eslint.config.js Initial commit 2025-09-10 20:33:39 -06:00
Finished Project.mp4 feat(video, write-up): finished writeup for learning project-apis and shorted video 2025-09-10 21:53:43 -06:00
jsconfig.json Initial commit 2025-09-10 20:33:39 -06:00
Learning Project Writeup.md feat(video, write-up): finished writeup for learning project-apis and shorted video 2025-09-10 21:53:43 -06:00
package-lock.json Initial commit 2025-09-10 20:33:39 -06:00
package.json Initial commit 2025-09-10 20:33:39 -06:00
README.md feat(fox): learning project with video finished 2025-09-10 21:26:32 -06:00
svelte.config.js Initial commit 2025-09-10 20:33:39 -06:00
vite.config.js Initial commit 2025-09-10 20:33:39 -06:00
wrangler.jsonc Initial commit 2025-09-10 20:33:39 -06:00

This was the orignal repo on how to do fetch requests and getting started with sveltekit

sv

Everything you need to build a Svelte project, powered by sv.

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.