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

https://github.com/lxsmnsyc/solid-sfc-styled-labels-starter

A SolidJS starter template with solid-labels, solid-sfc and solid-styled
https://github.com/lxsmnsyc/solid-sfc-styled-labels-starter

Last synced: about 2 months ago
JSON representation

A SolidJS starter template with solid-labels, solid-sfc and solid-styled

Awesome Lists containing this project

README

        

# solid-sfc-styled-labels-starter

This is a SolidJS starter template for easily setting up [`solid-sfc`](https://github.com/LXSMNSYC/solid-sfc), [`solid-styled`](https://github.com/LXSMNSYC/solid-styled) and [`solid-labels`](https://github.com/LXSMNSYC/babel-plugin-solid-labels).

## Development

### Installation

The project is setup with [PNPM](https://pnpm.io/) but you can also use NPM, Yarn or any other Node package managers.

To start, simply run the one of the following commands to setup the project:

```bash
pnpm i
```

```bash
npm i
```

```bash
yarn i
```

The template uses [Vite](https://vitejs.dev/) and [`vite-plugin-solid`](https://github.com/solidjs/vite-plugin-solid).

To run in dev mode:

```bash
pnpm dev
```

```bash
npm run dev
```

```bash
yarn dev
```

To build:

```bash
pnpm build
```

```bash
npm run build
```

```bash
yarn build
```