{"id":25882833,"url":"https://github.com/veehto/pwa-notes-app","last_synced_at":"2026-04-11T17:38:37.552Z","repository":{"id":280064127,"uuid":"940877810","full_name":"Veehto/pwa-notes-app","owner":"Veehto","description":"A React PWA app that saves your notes using LocalStorage Web storage object.","archived":false,"fork":false,"pushed_at":"2025-03-01T01:15:29.000Z","size":102,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-01T02:22:34.462Z","etag":null,"topics":["bootstrap5","css3","html5","javascript","locastorage","reactjs","vite","web-storage"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/Veehto.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":"2025-03-01T01:02:47.000Z","updated_at":"2025-03-01T01:15:33.000Z","dependencies_parsed_at":"2025-03-01T02:23:03.869Z","dependency_job_id":"e56dd833-da41-446c-b83f-52e7ac8aafc8","html_url":"https://github.com/Veehto/pwa-notes-app","commit_stats":null,"previous_names":["veehto/pwa-notes-app"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Veehto%2Fpwa-notes-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Veehto%2Fpwa-notes-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Veehto%2Fpwa-notes-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Veehto%2Fpwa-notes-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Veehto","download_url":"https://codeload.github.com/Veehto/pwa-notes-app/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241533988,"owners_count":19977890,"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":["bootstrap5","css3","html5","javascript","locastorage","reactjs","vite","web-storage"],"created_at":"2025-03-02T16:19:19.041Z","updated_at":"2026-04-11T17:38:37.481Z","avatar_url":"https://github.com/Veehto.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Notes PW-app (React) 📝\n\nEste proyecto es una **aplicación web para administrar y gestionar notas**, desarrollada con **React y Vite**. Permite a los usuarios crear, editar y eliminar notas de manera sencilla. La aplicación está diseñada para ser rápida, responsiva y fácilmente actualmente es **Progressive Web App (PWA)**, pero futuras actualizaciones aplicaremos el uso de **LocalStorage**.\n\n## **📌 Características**\n\n- **Crear, editar y eliminar notas** en una interfaz amigable.\n- **Organización de notas** en un listado dinámico.\n- **Diseño responsivo** para dispositivos móviles y escritorio.\n- **Código modular y escalable** con componentes reutilizables.\n- **Preparada para integrar localStorage, imágenes y geolocalización** (próxima implementación).\n\n\n## **📁 Estructura del Proyecto**\n\n```\n├── dist\n├── nodemodules\n├── public/\n│   ├── icons/\n│   ├── manifest.json\n│   ├── sw.js\n│   └── vite.svg\n├── src/\n│   ├── assets/\n│   │   └── react.svg\n│   ├── components/\n│   │   ├── NoteCard.jsx\n│   │   ├── NoteForm.jsx\n│   │   └── NotesList.jsx\n│   ├── App.css\n│   ├── App.jsx\n│   ├── index.jsx\n│   └── main.jsx\n├── .gitignore\n├── eslint.config.js\n├── index.html\n├── package-lock.json\n├── package.json\n├── README.md\n└── vite.config.js\n```\n\n\n## **🚀 Instalación y Ejecución (Entorno desarrollador)**\n\nPara ejecutar la aplicación localmente, sigue estos pasos:\n\n1. Clonar el Repositorio\n\n```bash\ngit clone https://github.com/Veehto/pwa-notes-app\ncd TU_CARPETA\n```\n\n2. Instalar Dependencias\n\n```bash\nnpm install\n```\n\n3. Ejecutar la Aplicación\n\n```bash\nnpm run dev\n```\n\nLuego, abre tu navegador y accede a **`http://localhost:5173`**.\n\n\n## **🚀 Montar Servidor para build (Distribución)**\n1. Ejecutar comando para crear build\n\n```bash\nnpm run build\n```\n\n2. Instalar serve npm package\n\n```bash\nnpm install -g serve\n```\n\n3. Levantar servidor de distribución\n\n```bash\nserve -s dist\n```\n\nLuego, abre tu navegador y accede a **`http://localhost:3000`**.\n\n\n## **🛠️ Funcionalidades de los Componentes**\n- `NoteForm.jsx` - Formulario para Agregar y Editar Notas\n  - Este componente permite a los usuarios ingresar nuevas notas y editarlas.\n- `NoteCard.jsx` - Componente para Mostrar Notas\n  - Cada nota se renderiza dentro de este componente.\n- `NotesList.jsx` - Listado de Notas\n  - Administra la lista de notas dinámicamente.\n\n\n## Autor\n- [Victor CS](https://github.com/Veehto)\n\n\n# React + Vite\n\nThis template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.\n\nCurrently, two official plugins are available:\n\n- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh\n- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh\n\n## Expanding the ESLint configuration\n\nIf you are developing a production application, we recommend using TypeScript and enable type-aware lint rules. Check out the [TS template](https://github.com/vitejs/vite/tree/main/packages/create-vite/template-react-ts) to integrate TypeScript and [`typescript-eslint`](https://typescript-eslint.io) in your project.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fveehto%2Fpwa-notes-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fveehto%2Fpwa-notes-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fveehto%2Fpwa-notes-app/lists"}