{"id":15598598,"url":"https://github.com/jofaval/qwik-hello-world","last_synced_at":"2026-05-02T17:31:55.866Z","repository":{"id":60016934,"uuid":"540620645","full_name":"jofaval/qwik-hello-world","owner":"jofaval","description":"Experimental project to test out Qwik's \"first 'official' release\", dummy Journal (self-chat-like).","archived":false,"fork":false,"pushed_at":"2022-09-24T22:49:04.000Z","size":67,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-29T12:14:09.430Z","etag":null,"topics":["experiment","javascript","journal","jsx","qwik","react","tsx","typescript"],"latest_commit_sha":null,"homepage":"https://jofaval.github.io/qwik-hello-world/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jofaval.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-09-23T21:19:34.000Z","updated_at":"2023-03-07T08:06:56.000Z","dependencies_parsed_at":"2022-09-25T15:02:33.718Z","dependency_job_id":null,"html_url":"https://github.com/jofaval/qwik-hello-world","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jofaval/qwik-hello-world","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jofaval%2Fqwik-hello-world","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jofaval%2Fqwik-hello-world/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jofaval%2Fqwik-hello-world/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jofaval%2Fqwik-hello-world/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jofaval","download_url":"https://codeload.github.com/jofaval/qwik-hello-world/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jofaval%2Fqwik-hello-world/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273046462,"owners_count":25036179,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-31T02:00:09.071Z","response_time":79,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["experiment","javascript","journal","jsx","qwik","react","tsx","typescript"],"created_at":"2024-10-03T01:40:47.177Z","updated_at":"2026-05-02T17:31:50.827Z","avatar_url":"https://github.com/jofaval.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Qwik App ⚡️\n\n- [Qwik Docs](https://qwik.builder.io/)\n- [Discord](https://qwik.builder.io/chat)\n- [Qwik Github](https://github.com/BuilderIO/qwik)\n- [@QwikDev](https://twitter.com/QwikDev)\n- [Vite](https://vitejs.dev/)\n- [Partytown](https://partytown.builder.io/)\n- [Mitosis](https://github.com/BuilderIO/mitosis)\n- [Builder.io](https://www.builder.io/)\n\n---\n\n## Why am I doing this?\n\nIt's just a simple journal to get my hands on how does Qwik handle:\n\n- Mutations\n- State management\n- Memoization\n- Routing\n- Typescript compatibility\n\n...And, obviously, to see for myself it's speed and advantages, because it does indeed look very promising.\n\nIt's just an experimental project, for fun, to test new technology out.\n\n## Project Structure\n\nInside of you project, you'll see the following directories and files:\n\n```\n├── public/\n│   └── ...\n└── src/\n    ├── components/\n    │   └── ...\n    └── routes/\n        └── ...\n```\n\n- `src/routes`: Provides the directory based routing, which can include a hierarchy of `layout.tsx` layout files, and `index.tsx` files as the page. Additionally, `index.ts` files are endpoints. Please see the [routing docs](https://qwik.builder.io/qwikcity/routing/overview/) for more info.\n\n- `src/components`: Recommended directory for components.\n\n- `public`: Any static assets, like images, can be placed in the public directory. Please see the [Vite public directory](https://vitejs.dev/guide/assets.html#the-public-directory) for more info.\n\n## Add Integrations\n\nUse the `npm run qwik add` command to add other integrations. Some examples of integrations include as a Cloudflare, Netlify or Vercel server, and the Static Site Generator (SSG).\n\n```\nnpm run qwik add\n```\n\n## Development\n\nDevelopment 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 loaded by the browser.\n\n```\nnpm run dev\n```\n\n\u003e Note: during dev mode, Vite will request many JS files, which does not represent a Qwik production build.\n\n## Preview\n\nThe preview command will create a production build of the client modules, production build of `src/entry.preview.tsx`, and create a local server. The preview server is only for convenience to locally preview a production build, but it should not be used as a production server.\n\n```\nnpm run preview\n```\n\n## Production\n\nThe production build should generate the client and server modules by running both client and server build commands. Additionally, the build command will use Typescript run a type check on the source.\n\n```\nnpm run build\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjofaval%2Fqwik-hello-world","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjofaval%2Fqwik-hello-world","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjofaval%2Fqwik-hello-world/lists"}