{"id":28267331,"url":"https://github.com/revuls/luminis","last_synced_at":"2026-07-16T17:37:10.813Z","repository":{"id":293880403,"uuid":"985334029","full_name":"revuls/luminis","owner":"revuls","description":"Framework para crear web apps ligeras y modernas","archived":false,"fork":false,"pushed_at":"2026-02-22T15:56:19.000Z","size":1428,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-07-16T17:36:48.424Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/revuls.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null}},"created_at":"2025-05-17T14:44:43.000Z","updated_at":"2026-02-22T15:56:22.000Z","dependencies_parsed_at":"2025-06-15T12:34:38.130Z","dependency_job_id":null,"html_url":"https://github.com/revuls/luminis","commit_stats":null,"previous_names":["revuls/luminis"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/revuls/luminis","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/revuls%2Fluminis","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/revuls%2Fluminis/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/revuls%2Fluminis/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/revuls%2Fluminis/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/revuls","download_url":"https://codeload.github.com/revuls/luminis/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/revuls%2Fluminis/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35553295,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-16T02:00:06.687Z","response_time":83,"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":[],"created_at":"2025-05-20T15:10:39.314Z","updated_at":"2026-07-16T17:37:10.808Z","avatar_url":"https://github.com/revuls.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🌟 Luminis\n\n**Luminis** is a Progressive Web App (PWA) built with [Lit](https://lit.dev/), [Vite](https://vitejs.dev/), and [Vaadin Router](https://vaadin.com/router). It's designed to be fast, modular, and scalable, with smooth navigation and clean styling.\n\n---\n\n## 🚀 Features\n\n- ⚡️ Fast rendering with **LitElement**\n- 🌐 SPA navigation with **Vaadin Router**\n- 🎨 Global and scoped CSS styling\n- 📱 Installable as a **PWA**\n- 🌈 Smooth page transitions\n- 🧭 Reusable navigation component\n- 🌠 Built-in icon support with **Phosphor Icons**\n\n---\n\n## 🗂️ Project Structure\n\n```\nsrc/\n├── assets/\n│   ├── icons/                → Icons and logos\n│   ├── styles/               → CSS styles folder\n│   │   ├── global.css        → Global styles\n├── components/               → Lit components and pages\n│   ├── pages/                → Lit pages\n│   │   ├── home-page.js      → Home page example\n│   │   ├── about-page.js     → About page example\n│   │   ├── product-page.js   → Product page example with route params\n│   ├── shared/               → Shared Lit components\n│   │   └── NavBar.js         → Navigation component example\n├── app.js                    → Main app entry point\n├── router/index.js           → Router configuration\n├── index.html                → Main HTML file\n├── manifest.webmanifest      → PWA manifest\n├─ vite.config.js                → Vite configuration\n```\n\n---\n\n## 🌠 Icons\n\nThis project uses [@phosphor-icons/web](https://phosphoricons.com/) for its icon system. The icon web fonts are installed via npm and included in the main app entry.\n\n**How to use an icon:**\n\n```html\n\u003c!-- Example of using an icon (e.g. ph-house) --\u003e\n\u003ci class=\"ph ph-house\"\u003e\u003c/i\u003e\n```\n\nYou can browse available icons at [https://phosphoricons.com/](https://phosphoricons.com/). Note that only the `regular` weight is imported by default in `src/app.js` to minimize bundle size, but others can be added if required.\n\n---\n\n## 🛠️ Requirements\n\n- Node.js \u003e= 18\n- npm \u003e= 8\n\n---\n\n## 📦 Installation\n\n```bash\nnpm install\n```\n\n---\n\n## 🧪 Development\n\n```bash\nnpm run dev\n```\n\nThis will start the app at [http://localhost:5173](http://localhost:5173).\n\n---\n\n## 🏗️ Production Build\n\n```bash\nnpm run build\n```\n\nOptimized files will be generated in the `/dist` folder.\n\n---\n\n## 🔍 Preview Build\n\n```bash\nnpm run serve\n```\n\n---\n\n## 📱 PWA\n\nThis app includes a `manifest.webmanifest` and uses `vite-plugin-pwa` to:\n\n- Add to home screen\n- Work offline (optional Service Worker)\n- Define name, icon, and theme colors\n\n---\n\n## 🧹 Linting \u0026 Formatting\n\n```bash\nnpm run lint      # Detect problems\nnpm run lint:fix  # Auto-fix issues\nnpm run format    # Format code with Prettier\n```\n\n---\n\n## 📄 License\n\nMIT License © 2025","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frevuls%2Fluminis","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frevuls%2Fluminis","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frevuls%2Fluminis/lists"}