{"id":23868354,"url":"https://github.com/uchamod/flutter-node-js-wallpaper-setup-application","last_synced_at":"2026-04-13T04:39:18.149Z","repository":{"id":263251829,"uuid":"889505714","full_name":"uchamod/flutter-node-js-wallpaper-setup-application","owner":"uchamod","description":"A full-stack application designed for managing wallpapers. The client-side is built with Flutter as a mobile application, and the backend is powered by a Node.js server with MongoDB as the database.","archived":false,"fork":false,"pushed_at":"2024-12-23T09:32:31.000Z","size":5276,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-13T04:03:03.712Z","etag":null,"topics":["api","dart","expressjs","flutter","jwt-authentication","mongodb","nodejs","ui-design","unplash-api"],"latest_commit_sha":null,"homepage":"","language":"Dart","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/uchamod.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":"2024-11-16T13:58:33.000Z","updated_at":"2024-12-23T09:34:29.000Z","dependencies_parsed_at":"2025-11-13T04:02:38.909Z","dependency_job_id":null,"html_url":"https://github.com/uchamod/flutter-node-js-wallpaper-setup-application","commit_stats":null,"previous_names":["uchamod/flutter-node-js-wallpaper-setup-application"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/uchamod/flutter-node-js-wallpaper-setup-application","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uchamod%2Fflutter-node-js-wallpaper-setup-application","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uchamod%2Fflutter-node-js-wallpaper-setup-application/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uchamod%2Fflutter-node-js-wallpaper-setup-application/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uchamod%2Fflutter-node-js-wallpaper-setup-application/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/uchamod","download_url":"https://codeload.github.com/uchamod/flutter-node-js-wallpaper-setup-application/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uchamod%2Fflutter-node-js-wallpaper-setup-application/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31740266,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T03:27:07.512Z","status":"ssl_error","status_checked_at":"2026-04-13T03:26:53.610Z","response_time":93,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["api","dart","expressjs","flutter","jwt-authentication","mongodb","nodejs","ui-design","unplash-api"],"created_at":"2025-01-03T11:19:34.449Z","updated_at":"2026-04-13T04:39:18.131Z","avatar_url":"https://github.com/uchamod.png","language":"Dart","readme":"# Flutter-Node.js-Wallpaper-Setup Application\n\nThis repository contains a full-stack application designed for managing wallpapers. The client-side is built with Flutter as a mobile application, and the backend is powered by a Node.js server with MongoDB as the database. The application also incorporates JWT authentication for secure user access.\n\n## Features 🚀\n- **Get Random Wallpapers**: 🎲 Fetch high-quality random wallpapers.\n- **Search Wallpapers**: 🔍 Find wallpapers by specific keywords or categories.\n- **Add to Favorites**: ❤️ Save wallpapers as favorites for easy access.\n- **Set as Mobile Wallpaper**: 📱 Directly set wallpapers on your mobile device.\n- **Secure Access**: 🔒 User authentication using JWT (JSON Web Tokens).\n\n## Technologies Used 🛠️\n\n### Frontend 🖼️\n- **Framework**: Flutter\n- **State Management**: Provider (or any state management tool of your choice)\n- **HTTP Library**: `http` package for API communication\n\n### Backend 🔧\n- **Framework**: Node.js with Express.js\n- **Authentication**: JWT for secure user sessions\n- **Database**: MongoDB for data storage\n\n### Deployment 🌐\n- **Backend**: Deployed on [Platform/Service, e.g., AWS, Heroku]\n- **Frontend**: Deployed as a Flutter mobile app (e.g., Play Store, APK distribution)\n\n## Prerequisites ✅\n- Flutter SDK installed for mobile development.\n- Node.js and npm installed for backend development.\n- MongoDB instance (local or cloud, e.g., MongoDB Atlas).\n\n## Setup Instructions 📋\n\n### Backend Setup 🖥️\n1. Clone the repository:\n   ```bash\n   git clone https://github.com/\u003cyour-username\u003e/flutter-node-js-wallpaper-setup-application.git\n   cd flutter-node-js-wallpaper-setup-application/server\n   ```\n2. Install dependencies:\n   ```bash\n   npm install\n   ```\n3. Configure environment variables:\n   - Create a `.env` file in the `server` directory and add:\n     ```env\n     PORT=3000\n     MONGO_URI=\u003cyour-mongodb-connection-string\u003e\n     JWT_SECRET=\u003cyour-jwt-secret\u003e\n     ```\n4. Start the server:\n   ```bash\n   npm start\n   ```\n   The backend will run on `http://localhost:3000` by default.\n\n### Frontend Setup 📱\n1. Navigate to the Flutter project:\n   ```bash\n   cd flutter-node-js-wallpaper-setup-application/client\n   ```\n2. Install dependencies:\n   ```bash\n   flutter pub get\n   ```\n3. Configure the API endpoint:\n   - Open `lib/config.dart` (or similar configuration file) and set the base URL for your backend:\n     ```dart\n     const String baseUrl = \"http://\u003cyour-backend-host\u003e:3000\";\n     ```\n4. Run the app:\n   ```bash\n   flutter run\n   ```\n\n## API Endpoints 🌟\n### Authentication 🔐\n- **POST** `/api/auth/register`: Register a new user.\n- **POST** `/api/auth/login`: Login with credentials.\n\n### Wallpaper Management 🖼️\n- **GET** `/api/wallpapers/random`: Fetch random wallpapers.\n- **GET** `/api/wallpapers/search?query=\u003ckeyword\u003e`: Search wallpapers.\n- **POST** `/api/wallpapers/favorites`: Add a wallpaper to favorites.\n- **GET** `/api/wallpapers/favorites`: Get all favorite wallpapers.\n\n## Screenshots 📸\n[Add screenshots of the application here]\n\n## Contributing 🤝\nContributions are welcome! Please follow these steps:\n1. Fork the repository.\n2. Create a new branch for your feature/fix.\n3. Commit your changes and push them to your fork.\n4. Submit a pull request for review.\n\n## License 📄\nThis project is licensed under the [MIT License](LICENSE).\n\n---\nFeel free to use and modify this application for your own purposes!\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fuchamod%2Fflutter-node-js-wallpaper-setup-application","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fuchamod%2Fflutter-node-js-wallpaper-setup-application","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fuchamod%2Fflutter-node-js-wallpaper-setup-application/lists"}