one of a curated collection of Github templates designed to kickstart your project and help you get up and running in no time!
This is a project template to help you create your first web application with. It comes with a simple routing setup and a couple of helper components, including one that should keep most of your content mobile friendly and a premade mobile friendly navbar.
- Set up Sveltekit
- Run it on your local device
- Learn about Svelte components and how to reuse them
- Learn about Sveltekit routing
- Use this template by clicking the "Use this template" button above
- Make sure you have Node.js installed on your computer. To check, type
node -v
in your terminal. If you don't have it installed, you can download it on Node.js - In your terminal, type
npm install
to install the needed dependencies - In your terminal, type
npm run dev
to run the project. It will display something like this:
- If you open the link, you will have a live preview of your site running on your local computer.
This repository contains a full-stack Sveltekit example! If you're looking for just the front-end, simply delete the backend code:
rm -r src/routes/api # delete the REST API
rm src/+page.server.ts # delete the server-side rendering code