{"id":20898753,"url":"https://github.com/joanroucoux/qwik-marvel-full-app","last_synced_at":"2026-04-27T14:02:46.908Z","repository":{"id":193919786,"uuid":"594764765","full_name":"JoanRoucoux/qwik-marvel-full-app","owner":"JoanRoucoux","description":"Marvel Search Application using Qwik, Tailwind CSS and the Marvel API.","archived":false,"fork":false,"pushed_at":"2024-07-22T11:50:27.000Z","size":380,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-19T12:51:15.642Z","etag":null,"topics":["daisyui","marvel-api","qwik","serverless-aws-lambda"],"latest_commit_sha":null,"homepage":"","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/JoanRoucoux.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-01-29T15:22:06.000Z","updated_at":"2024-07-22T11:50:30.000Z","dependencies_parsed_at":"2024-11-18T11:14:59.451Z","dependency_job_id":null,"html_url":"https://github.com/JoanRoucoux/qwik-marvel-full-app","commit_stats":null,"previous_names":["joanroucoux/qwik-city-marvel-app","joanroucoux/qwik-marvel-full-app"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JoanRoucoux%2Fqwik-marvel-full-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JoanRoucoux%2Fqwik-marvel-full-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JoanRoucoux%2Fqwik-marvel-full-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JoanRoucoux%2Fqwik-marvel-full-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JoanRoucoux","download_url":"https://codeload.github.com/JoanRoucoux/qwik-marvel-full-app/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243285624,"owners_count":20266849,"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","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":["daisyui","marvel-api","qwik","serverless-aws-lambda"],"created_at":"2024-11-18T11:12:00.349Z","updated_at":"2025-12-26T15:13:01.464Z","avatar_url":"https://github.com/JoanRoucoux.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Qwik City Marvel App\n\nThis application allows you to explore Marvel comics and characters using Qwik, Tailwind CSS and the Marvel API.\n\nDon't forget to add a `.env.local` file if you want to try it:\n```\nVITE_MARVEL_PUBLIC_BASE_URL=https://gateway.marvel.com/v1/public\nVITE_MARVEL_PUBLIC_API_KEY=XXXX\nVITE_MARVEL_PRIVATE_API_KEY=YYYY\n```\n\n## Stack\n| Client | API |\n| ------------- | ------------- |\n| Qwik | Marvel API |\n\n## Demo\n\u003cdiv\u003e\n    \u003cimg width=\"400\" alt=\"qwik-city-marvel-app_home\" src=\"https://github.com/JoanRoucoux/qwik-city-marvel-app/assets/21682157/a5ebd157-24fb-44bd-856e-2277c4c03303\"\u003e\n    \u003cimg width=\"400\" alt=\"qwik-city-marvel-app_search\" src=\"https://github.com/JoanRoucoux/qwik-city-marvel-app/assets/21682157/5292766b-6fad-400a-bdf0-5eec0b57252f\"\u003e\n    \u003cimg width=\"400\" alt=\"qwik-city-marvel-app_comic\" src=\"https://github.com/JoanRoucoux/qwik-city-marvel-app/assets/21682157/fde83788-1ac9-4dbc-b078-9e944552b94b\"\u003e\n    \u003cimg width=\"400\" alt=\"qwik-city-marvel-app_character\" src=\"https://github.com/JoanRoucoux/qwik-city-marvel-app/assets/21682157/83384dec-e837-442f-a463-33986cc40618\"\u003e\n\u003c/div\u003e\n\n# Qwik City 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\n---\n\n## Project Structure\n\nThis project is using Qwik with [QwikCity](https://qwik.builder.io/qwikcity/overview/). QwikCity is just a extra set of tools on top of Qwik to make it easier to build a full site, including directory-based routing, layouts, and more.\n\nInside your project, you'll see the following directory structure:\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 an `index.tsx` file 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 and deployment\n\nUse the `npm run qwik add` command to add additional integrations. Some examples of integrations include: Cloudflare, Netlify or Express server, and the [Static Site Generator (SSG)](https://qwik.builder.io/qwikcity/guides/static-site-generation/).\n\n```shell\nnpm run qwik add # or `yarn qwik add`\n```\n\n## Development\n\nDevelopment mode uses [Vite's development server](https://vitejs.dev/). During development, the `dev` command will server-side render (SSR) the output.\n\n```shell\nnpm start # or `yarn start`\n```\n\n\u003e Note: during dev mode, Vite may request a significant number of `.js` files. This does not represent a Qwik production build.\n\n## Preview\n\nThe preview command will create a production build of the client modules, a production build of `src/entry.preview.tsx`, and run a local server. The preview server is only for convenience to locally preview a production build, and it should not be used as a production server.\n\n```shell\nnpm run preview # or `yarn preview`\n```\n\n## Production\n\nThe production build will generate client and server modules by running both client and server build commands. Additionally, the build command will use Typescript to run a type check on the source code.\n\n```shell\nnpm run build # or `yarn build`\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoanroucoux%2Fqwik-marvel-full-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjoanroucoux%2Fqwik-marvel-full-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoanroucoux%2Fqwik-marvel-full-app/lists"}