sveltekit-starter-kit Svelte Themes

Sveltekit Starter Kit

SvelteKit Starter Kit

A starter kit for SvelteKit projects to help developers quickly set up and start a new project with best practices and a structured environment.

Features

  • SASS Support: Pre-installed SASS for advanced styling capabilities.

Getting Started

Prerequisites

Make sure you have the following installed:

Installation

  1. Clone the repository:

    git clone https://github.com/crististan/sveltekit-starter-kit.git
    cd sveltekit-starter-kit
    
  2. Install dependencies:

    Using npm:

    npm install
    

    Using Yarn:

    yarn install
    
  3. 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",
        ...
      }
    }
    

Development

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.

Top categories

Loading Svelte Themes