Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/stephanepericat/svelte-boilerplate

A svelte.js boilterplate / testing playground.
https://github.com/stephanepericat/svelte-boilerplate

boilerplate cypress e2e-testing javascript storybook svelte-v3 sveltejs webpack

Last synced: 3 months ago
JSON representation

A svelte.js boilterplate / testing playground.

Awesome Lists containing this project

README

        

[![Build Status](https://travis-ci.org/stephanepericat/svelte-boilerplate.svg?branch=master)](https://travis-ci.org/stephanepericat/svelte-boilerplate)

# Svelte Boilerplate

A svelte.js boilterplate / testing playground.

## Features

- Client side routing with [svelte-routing](https://github.com/EmilTholin/svelte-routing)
- Development with webpack-dev-server
- E2E testing with Cypress
- Travis CI configuration
- Storybook integration
- SASS support

## Installation

```shell
npx degit github:stephanepericat/svelte-boilerplate ./my-project
cd ./my-project
npm install
```

## Launch Development Server

```shell
npm run dev
```

## Launch Storybook

```shell
npm run storybook
```

## Run E2E Tests

```shell
npm test
```

## Build Application

```shell
npm run build
```