Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/antony/svelte-seed
A seed project for getting up and running super quick with svelte
https://github.com/antony/svelte-seed
reactive reactiveui rollup seed seed-app svelte svelte-components svelte-framework sveltejs vanilla vanilla-js
Last synced: 26 days ago
JSON representation
A seed project for getting up and running super quick with svelte
- Host: GitHub
- URL: https://github.com/antony/svelte-seed
- Owner: antony
- Created: 2017-09-29T10:35:27.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-02-19T14:24:35.000Z (over 5 years ago)
- Last Synced: 2024-09-29T10:42:08.646Z (about 1 month ago)
- Topics: reactive, reactiveui, rollup, seed, seed-app, svelte, svelte-components, svelte-framework, sveltejs, vanilla, vanilla-js
- Language: HTML
- Size: 315 KB
- Stars: 14
- Watchers: 6
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Svelte seed
A ready to go, live-reloading seed project for svelte.
Uses parceljs for bundling.
Just edit the files in `src/components` to get started.
## Preparation
Make yourself a fresh, gitless copy!
```bash
npx degit antony/svelte-seed
``````bash
npm install
```## How to run
```bash
npm run dev
```## Developing
Edit the `component.html`
## Building for production
Run:
```bash
npm run build
```and your built asset will exist in `/dist/.js`.
## Deploying
The seed has no built-in functionality for deployment, but recommends installing [now](https://zeit.co/now):
```bash
npm i -g now
```and using their zero config deployments to get started!
```bash
now
```