Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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: 5 days ago
JSON representation

A seed project for getting up and running super quick with svelte

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
```