Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nakasyou/azuki
https://github.com/nakasyou/azuki
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/nakasyou/azuki
- Owner: nakasyou
- Created: 2023-09-04T11:57:42.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-10T07:56:26.000Z (about 1 year ago)
- Last Synced: 2024-10-11T17:44:05.635Z (27 days ago)
- Language: TypeScript
- Homepage: https://nakasyou.github.io/Azuki/
- Size: 50.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Qwik + Vite
## Qwik in CSR mode
This starter is using a pure CSR (Client Side Rendering) mode. This means, that the application is fully bootstrapped in the browser. Most of Qwik innovations however take advantage of SSR (Server Side Rendering) mode.
```ts
export default defineConfig({
plugins: [
qwikVite({
csr: true,
}),
],
})
```Use `npm create qwik@latest` to create a full production ready Qwik application, using SSR and [QwikCity](https://qwik.builder.io/docs/qwikcity/), our server-side metaframwork.
## Usage
```bash
$ npm install # or pnpm install or yarn install
```Learn more on the [Qwik Website](https://qwik.builder.io) and join our community on our [Discord](https://qwik.builder.io/chat)
## Available Scripts
In the project directory, you can run:
### `npm run dev`
Runs the app in the development mode.
Open [http://localhost:5173](http://localhost:5173) to view it in the browser.### `npm run build`
Builds the app for production to the `dist` folder.