Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dahie/kebus-svelte
https://github.com/dahie/kebus-svelte
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/dahie/kebus-svelte
- Owner: Dahie
- Created: 2023-01-29T06:00:50.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-18T08:32:29.000Z (3 months ago)
- Last Synced: 2024-08-18T09:38:11.127Z (3 months ago)
- Language: Svelte
- Homepage: https://kebus-svelte.vercel.app
- Size: 932 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# create-svelte
Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte).
## Creating a project
If you're seeing this, you've probably already done this step. Congrats!
```bash
# create a new project in the current directory
npm create svelte@latest# create a new project in my-app
npm create svelte@latest my-app
```## Developing
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
```bash
yarn dev# or start the server and open the app in a new browser tab
yarn dev -- --open
```## Building
To create a production version of your app:
```bash
yarn build
```You can preview the production build with `yarn preview`.
> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.