6
0
Fork 0
No description
  • Svelte 72%
  • JavaScript 23.3%
  • HTML 4.7%
Find a file
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.