Skip to content

Getting Started

Getting started with @azure-net/kit.
This package is designed specifically for Svelte 5 and is not compatible with older versions.

🚀 New Project

1. Install SvelteKit (Svelte 5)

Create a new SvelteKit project using the official generator:

bash
npx sv create my-app
# or with pnpm
pnpm dlx sv create my-app

2. Add @azure-net/kit

Navigate to the project folder and install the library:

bash
cd my-app

# With npm
npm install @azure-net/kit

# With pnpm
pnpm add @azure-net/kit

3. Install CLI for code generation (optional)

Navigate to the project folder and install the library:

bash
cd my-app

# With npm
npm install -D @azure-net/cli

# With pnpm
pnpm add -D @azure-net/cli

4. Start the development server

Run the project in development mode:

bash
npm run dev
# or
pnpm dev

Open http://localhost:5173 in your browser.

✅ What's next?

  • Explore the architecture sections within the Azure-net Architecture.
  • Study the package composition and its built-in functionality.

Build reliable applications faster — with @azure-net/kit for Svelte 5.