my homepage
Find a file
2022-03-20 11:27:36 +02:00
src Color fine tuning 2022-03-20 11:27:36 +02:00
static Static site generation 2022-03-17 19:41:23 +02:00
tests Svelte demo app template project 2022-03-10 22:08:33 +02:00
.eslintrc.cjs Svelte demo app template project 2022-03-10 22:08:33 +02:00
.gitignore Svelte demo app template project 2022-03-10 22:08:33 +02:00
.npmrc Svelte demo app template project 2022-03-10 22:08:33 +02:00
.prettierrc Svelte demo app template project 2022-03-10 22:08:33 +02:00
package-lock.json Static site generation 2022-03-17 19:41:23 +02:00
package.json Static site generation 2022-03-17 19:41:23 +02:00
playwright.config.js Svelte demo app template project 2022-03-10 22:08:33 +02:00
README.md Svelte demo app template project 2022-03-10 22:08:33 +02:00
svelte.config.js Static site generation 2022-03-17 19:41:23 +02:00
tsconfig.json Svelte demo app template project 2022-03-10 22:08:33 +02:00

create-svelte

Everything you need to build a Svelte project, powered by create-svelte.

Creating a project

If you're seeing this, you've probably already done this step. Congrats!

# create a new project in the current directory
npm init svelte@next

# create a new project in my-app
npm init svelte@next my-app

Note: the @next is temporary

Developing

Once you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:

npm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open

Building

To create a production version of your app:

npm run build

You can preview the production build with npm run preview.

To deploy your app, you may need to install an adapter for your target environment.