{"id":26849424,"url":"https://github.com/pragatisharma21/backend","last_synced_at":"2026-04-11T05:08:17.577Z","repository":{"id":273696616,"uuid":"917859300","full_name":"pragatisharma21/Backend","owner":"pragatisharma21","description":"This is a backend API built using Node.js and Express.js for handling user authentication, data management, and secure API interactions. The project follows MVC architecture and uses MongoDB as the database.","archived":false,"fork":false,"pushed_at":"2025-02-25T13:54:59.000Z","size":639,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-03T13:19:46.892Z","etag":null,"topics":["cron-jobs","docker","dotenv","expressjs","mongodb","nodejs","nodemon","pm2"],"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/pragatisharma21.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-01-16T19:25:21.000Z","updated_at":"2025-02-25T13:55:03.000Z","dependencies_parsed_at":"2025-01-22T13:19:59.465Z","dependency_job_id":"20d4b36f-61e6-4dad-bc0e-d54c697fa880","html_url":"https://github.com/pragatisharma21/Backend","commit_stats":null,"previous_names":["pragatisharma21/backend"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/pragatisharma21/Backend","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pragatisharma21%2FBackend","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pragatisharma21%2FBackend/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pragatisharma21%2FBackend/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pragatisharma21%2FBackend/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pragatisharma21","download_url":"https://codeload.github.com/pragatisharma21/Backend/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pragatisharma21%2FBackend/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31669123,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-10T17:19:37.612Z","status":"online","status_checked_at":"2026-04-11T02:00:05.776Z","response_time":54,"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":["cron-jobs","docker","dotenv","expressjs","mongodb","nodejs","nodemon","pm2"],"created_at":"2025-03-30T21:35:57.275Z","updated_at":"2026-04-11T05:08:17.560Z","avatar_url":"https://github.com/pragatisharma21.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"📌 Backend Project - Setup Guide\n🚀 Prerequisites\nBefore running this project, ensure you have the following installed:\n\nNode.js (v16 or later) - Download\nnpm or yarn (Package Manager)\nMongoDB (If using MongoDB locally, ensure it’s running)\nPostman (For API testing - optional)\n🛠 Installation \u0026 Setup\n1️⃣ Clone the repository:\n\nsh\nCopy\nEdit\ngit clone \u003crepo-url\u003e\ncd \u003cproject-folder\u003e\n2️⃣ Install dependencies:\n\nsh\nCopy\nEdit\nnpm install\n3️⃣ Set up environment variables:\nCreate a .env file in the root directory and configure:\n\nsh\nCopy\nEdit\nPORT=5000\nMONGO_URI=\u003cyour_mongodb_connection_string\u003e\nJWT_SECRET=\u003cyour_jwt_secret_key\u003e\n4️⃣ Run the server:\n\nsh\nCopy\nEdit\nnpm run dev\n(Default port is 5000, change in .env if needed)\n\n📌 Project Structure\nbash\nCopy\nEdit\n📂 backend-project\n ┣ 📂 src\n ┃ ┣ 📂 config       # Database \u0026 other configurations  \n ┃ ┣ 📂 controllers  # Business logic for APIs  \n ┃ ┣ 📂 middleware   # Authentication \u0026 other middlewares  \n ┃ ┣ 📂 models       # Mongoose/Database models  \n ┃ ┣ 📂 routes       # API routes  \n ┃ ┗ 📂 utils        # Helper functions  \n ┣ 📄 .env           # Environment variables  \n ┣ 📄 server.js      # Entry point  \n ┣ 📄 package.json   # Dependencies \u0026 scripts  \n ┗ 📄 README.md      # Project documentation  \n🔥 API Endpoints\nMethod\tRoute\tDescription\tAuth Required\nPOST\t/auth/signup\tRegister new user\t❌\nPOST\t/auth/login\tUser login \u0026 JWT token\t❌\nGET\t/users\tGet all users\t✅\nPOST\t/data\tAdd new data entry\t✅\n(For full API details, refer to routes folder)\n\n✨ Technologies Used\nNode.js + Express.js\nMongoDB + Mongoose\nJWT Authentication\nBcrypt for Password Hashing\ndotenv for Environment Variables\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpragatisharma21%2Fbackend","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpragatisharma21%2Fbackend","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpragatisharma21%2Fbackend/lists"}