My personal space on the interwebs
Go to file
Nicco 6d1a835972
Merge pull request #14 from cupcakearmy/dependabot/npm_and_yarn/babel/traverse-7.23.2
Bump @babel/traverse from 7.17.3 to 7.23.2
2024-02-09 14:32:57 +01:00
design signature 2021-12-24 23:22:39 +01:00
src stats 2022-11-29 18:17:44 +01:00
static/images icons 2022-03-09 17:07:26 +01:00
.env move to svelte kit 2021-08-02 09:53:08 +02:00
.gitattributes signature 2021-12-24 23:22:39 +01:00
.gitignore add umami 2021-12-23 12:37:34 +01:00
.graphqlrc.yml move to svelte kit 2021-08-02 09:53:08 +02:00
.npmrc move to svelte kit 2021-08-02 09:53:08 +02:00
README.md move to svelte kit 2021-08-02 09:53:08 +02:00
codegen.yaml new graphql pipeline 2021-12-22 23:25:13 +01:00
package.json deps, support page & table 2022-03-14 18:10:07 +01:00
pnpm-lock.yaml Bump @babel/traverse from 7.17.3 to 7.23.2 2023-10-17 22:39:48 +00:00
svelte.config.js dependencie update 2022-03-09 17:20:36 +01:00
tsconfig.json move to svelte kit 2021-08-02 09:53:08 +02:00

README.md

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

Before creating a production version of your app, install an adapter for your target environment. Then:

npm run build

You can preview the built app with npm run preview, regardless of whether you installed an adapter. This should not be used to serve your app in production.