Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dulinrain/qwik-ui
ui components for qwikjs
https://github.com/dulinrain/qwik-ui
Last synced: about 4 hours ago
JSON representation
ui components for qwikjs
- Host: GitHub
- URL: https://github.com/dulinrain/qwik-ui
- Owner: DuLinRain
- License: mit
- Created: 2023-12-30T07:27:49.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2023-12-30T07:30:19.000Z (11 months ago)
- Last Synced: 2023-12-30T08:25:08.172Z (11 months ago)
- Language: Less
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Qwik Library ⚡️
- [Qwik Docs](https://qwik.builder.io/)
- [Discord](https://qwik.builder.io/chat)
- [Qwik on GitHub](https://github.com/BuilderIO/qwik)
- [@QwikDev](https://twitter.com/QwikDev)
- [Vite](https://vitejs.dev/)
- [Partytown](https://partytown.builder.io/)
- [Mitosis](https://github.com/BuilderIO/mitosis)
- [Builder.io](https://www.builder.io/)---
## Project Structure
Inside your project, you'll see the following directories and files:
```
├── public/
│ └── ...
└── src/
├── components/
│ └── ...
└── index.ts
```- `src/components`: Recommended directory for components.
- `index.ts`: The entry point of your component library, make sure all the public components are exported from this file.
## Development
Development mode uses [Vite's development server](https://vitejs.dev/). For Qwik during development, the `dev` command will also server-side render (SSR) the output. The client-side development modules are loaded by the browser.
```
pnpm dev
```> Note: during dev mode, Vite will request many JS files, which does not represent a Qwik production build.
## Production
The production build should generate the production build of your component library in (./lib) and the typescript type definitions in (./lib-types).
```
pnpm build
```