How to Install SvelteKit
Table of Contents
Install NodeJs
Go to NodeJs and download the latest version of NodeJs.
Or you go to my full guide on How to Install NodeJs
Install SvelteKit
Open the terminal and run the following commands:
terminal
npm create svelte@latest my-app
cd my-app
npm install
npm run dev
Add --host
tag after npm run dev
to run the app in your local network.
terminal
npm run dev --host
Example of Routing System in SvelteKit
Subscribe For Updates