A starter kit for SvelteKit projects to help developers quickly set up and start a new project with best practices and a structured environment.
Make sure you have the following installed:
Clone the repository:
git clone https://github.com/crististan/sveltekit-starter-kit.git
cd sveltekit-starter-kit
Install dependencies:
Using npm:
npm install
Using Yarn:
yarn install
Rename the project:
Change the project name in package.json
:
{
"name": "your-project-name",
...
}
and in package-lock.json:
{
"name": "your-project-name",
...
"packages": {
"": {
"name": "your-project-name",
...
}
}
To start the development server:
npm run dev
or
yarn dev
Open your browser and navigate to http://localhost:3000. You should see your SvelteKit app running.