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
- Host: GitHub
- URL: https://github.com/lxsmnsyc/solid-sfc-styled-labels-starter
- Owner: lxsmnsyc
- Created: 2022-01-30T14:33:18.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-30T14:34:24.000Z (over 3 years ago)
- Last Synced: 2025-02-23T22:41:37.274Z (3 months ago)
- Language: TypeScript
- Size: 12.7 KB
- Stars: 9
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```