{"id":40003184,"url":"https://github.com/devgauravjatt/notes-nuxt","last_synced_at":"2026-01-19T02:02:48.930Z","repository":{"id":320559879,"uuid":"1082555479","full_name":"devgauravjatt/notes-nuxt","owner":"devgauravjatt","description":"A modern, full-stack notes application built with Nuxt 3, featuring user authentication and real-time note management.","archived":false,"fork":false,"pushed_at":"2025-10-24T12:24:49.000Z","size":130,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-24T14:28:23.562Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Vue","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/devgauravjatt.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-24T12:20:07.000Z","updated_at":"2025-10-24T12:24:52.000Z","dependencies_parsed_at":"2025-10-24T14:29:35.713Z","dependency_job_id":"714bb308-1e26-4131-b931-fe8e5c94388c","html_url":"https://github.com/devgauravjatt/notes-nuxt","commit_stats":null,"previous_names":["devgauravjatt/notes-nuxt"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/devgauravjatt/notes-nuxt","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devgauravjatt%2Fnotes-nuxt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devgauravjatt%2Fnotes-nuxt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devgauravjatt%2Fnotes-nuxt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devgauravjatt%2Fnotes-nuxt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devgauravjatt","download_url":"https://codeload.github.com/devgauravjatt/notes-nuxt/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devgauravjatt%2Fnotes-nuxt/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28557784,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-19T00:46:33.223Z","status":"online","status_checked_at":"2026-01-19T02:00:08.049Z","response_time":67,"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":"2026-01-19T02:02:32.638Z","updated_at":"2026-01-19T02:02:48.916Z","avatar_url":"https://github.com/devgauravjatt.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Notes App\n\nA modern, full-stack notes application built with Nuxt 3, featuring user authentication and real-time note management.\n\n## Features\n\n- **User Authentication** - Secure registration and login with JWT tokens\n- **Note Management** - Create, read, update, and delete personal notes\n- **Modern UI** - Clean interface built with TailwindCSS and custom fonts\n- **Database Integration** - Prisma ORM with MySQL for data persistence\n- **Server-Side Rendering** - Powered by Nuxt 3 for optimal performance\n\n## Tech Stack\n\n- **Framework:** Nuxt 3\n- **Database:** MySQL with Prisma ORM\n- **Authentication:** JWT with bcryptjs\n- **Styling:** TailwindCSS\n- **Validation:** validator.js\n- **Utilities:** VueUse, SweetAlert2\n\n## Prerequisites\n\n- Node.js (v18 or higher)\n- MySQL database\n- npm, pnpm, yarn, or bun\n\n## Setup\n\n1. **Install dependencies:**\n\n```bash\nnpm install\n```\n\n2. **Configure environment variables:**\n\nCreate a `.env` file in the root directory:\n\n```env\nDATABASE_URL=\"mysql://user:password@localhost:3306/notes_db\"\nJWT_SECRET=\"your-secret-key-here\"\n```\n\n3. **Set up the database:**\n\n```bash\n# Generate Prisma Client\nnpx prisma generate\n\n# Run database migrations\nnpx prisma migrate dev\n\n# (Optional) Seed the database\nnpx prisma db seed\n```\n\n## Development\n\nStart the development server on `http://localhost:3000`:\n\n```bash\nnpm run dev\n```\n\n## Production\n\nBuild and preview the application for production:\n\n```bash\n# Build\nnpm run build\n\n# Preview\nnpm run preview\n```\n\n## Project Structure\n\n```\n├── components/       # Vue components\n├── pages/           # Application routes\n│   ├── index.vue    # Notes dashboard\n│   ├── login.vue    # Login page\n│   └── register.vue # Registration page\n├── server/          # API endpoints\n├── prisma/          # Database schema and migrations\n├── middleware/      # Route middleware\n├── lib/             # Utility functions\n└── assets/          # Global styles and assets\n```\n\n## API Endpoints\n\n- `POST /api/auth/register` - Register a new user\n- `POST /api/auth/login` - Authenticate user\n- `GET /api/notes` - Get user notes\n- `POST /api/notes` - Create a new note\n- `PUT /api/notes/:id` - Update a note\n- `DELETE /api/notes/:id` - Delete a note\n\n## Database Schema\n\n### User\n\n- id (Int, Primary Key)\n- email (String, Unique)\n- password (String)\n- salt (String)\n- createdAt (DateTime)\n- updatedAt (DateTime)\n\n### Note\n\n- id (Int, Primary Key)\n- userId (Int, Foreign Key)\n- text (Text)\n- createdAt (DateTime)\n- updatedAt (DateTime)\n\n## Resources\n\n- [Nuxt 3 Documentation](https://nuxt.com/docs)\n- [Prisma Documentation](https://www.prisma.io/docs)\n- [TailwindCSS Documentation](https://tailwindcss.com/docs)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevgauravjatt%2Fnotes-nuxt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevgauravjatt%2Fnotes-nuxt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevgauravjatt%2Fnotes-nuxt/lists"}