KO
|
EN
gitlite — search
Search
#react
#css
#python
#chatbot
#javascript
#tailwindcss
#typescript
#machine-learning
#html
#python3
#nextjs
#linux
qwik-conference-app
★ 40
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
qwik-i18n
:
i18n exploration
qwik-storefront-ui
:
A frontend library for Qwik that helps developers quickly build fast, accessible, and beautiful storefronts.
qwik-voting
:
A simple Qwik voting application to demonstrate Qwiks features
hello-world-qwik
:
An example of how to set your Qwik application up to enable deployment at Kinsta.
Qwiklabs
:
Automate Qwiklabs Hands on Labs on GCP & AWS with Scripts.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
qwik-conference-app
?
Download (.md)
# Qwik qwik-conference-app ⚡️ - File based routing and MDX support - Vite.js tooling. - Express.js server. - Prettier code formatter. ## Development Builds ### Client only During development, the index.html is not a result of server-side rendering, but rather the Qwik app is built using client-side JavaScript only. This is ideal for development with Vite and its ability to reload modules quickly and on-demand. However, this mode is only for development and does not showcase "how" Qwik works since JavaScript is required to execute, and Vite imports many development modules for the app to work. ``` yarn dev ``` ### Server-side Rendering (SSR) and Client Server-side rendered index.html, with client-side modules prefetched and loaded by the browser. This can be used to test out server-side rendered content during development, but will be slower than the client-only development builds. ``` yarn dev.ssr ``` ## Production Builds A production build should generate the client and server modules by running both client and server build commands. ``` yarn build ``` ### Client Modules Production build that creates only the client-side modules that are dynamically imported by the browser. ``` yarn build.client ``` ### Server Modules Production build that creates the server-side render (SSR) module that is used by the server to render the HTML. ``` yarn build.ssr ``` ## Express Server This app has a minimal [Express server](https://expressjs.com/) implementation. After running a full build, you can preview the build using the command: ``` yarn serve ``` Then visit [http://localhost:8080/](http://localhost:8080/) --- ## Related - [Qwik Docs](https://qwik.builder.io/) - [Qwik Github](https://github.com/BuilderIO/qwik) - [@QwikDev](https://twitter.com/QwikDev) - [Discord](https://qwik.builder.io/chat) - [Vite](https://vitejs.dev/) - [Partytown](https://partytown.builder.io/) - [Mitosis](https://github.com/BuilderIO/mitosis) - [Builder.io](https://www.builder.io/) ## Express Server This app has a minimal [Express server](https://expressjs.com/) implementation. After running a full build, you can preview the build using the command: ``` yarn serve ``` Then visit [http://localhost:8080/](http://localhost:8080/) ## Express Server This app has a minimal [Express server](https://expressjs.com/) implementation. After running a full build, you can preview the build using the command: ``` npm run serve ``` Then visit [http://localhost:8080/](http://localhost:8080/)