{"id":23874213,"url":"https://github.com/dgknbtl/mevn-stack-twitter","last_synced_at":"2026-04-12T03:37:42.991Z","repository":{"id":50193754,"uuid":"502423665","full_name":"dgknbtl/mevn-stack-twitter","owner":"dgknbtl","description":"A twitter clone made with MongoDB, Express, Vue.js, Node.js.","archived":false,"fork":false,"pushed_at":"2024-01-27T21:05:33.000Z","size":1084,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-22T20:32:16.582Z","etag":null,"topics":["clone","docker","express","mongoose","node","nodejs","passport","twitter","twitter-api","twitter-clone","vuejs","vuex"],"latest_commit_sha":null,"homepage":"","language":"Vue","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/dgknbtl.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":"2022-06-11T18:15:35.000Z","updated_at":"2024-01-22T19:17:11.000Z","dependencies_parsed_at":"2024-01-23T19:01:29.156Z","dependency_job_id":"aa95f765-806f-4035-a5d6-a56531d37684","html_url":"https://github.com/dgknbtl/mevn-stack-twitter","commit_stats":null,"previous_names":["dgknbtl/mevn-stack-twitter-clone","dgknbtl/mevn-stack-twitter"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dgknbtl/mevn-stack-twitter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dgknbtl%2Fmevn-stack-twitter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dgknbtl%2Fmevn-stack-twitter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dgknbtl%2Fmevn-stack-twitter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dgknbtl%2Fmevn-stack-twitter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dgknbtl","download_url":"https://codeload.github.com/dgknbtl/mevn-stack-twitter/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dgknbtl%2Fmevn-stack-twitter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31703501,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-11T21:17:31.016Z","status":"online","status_checked_at":"2026-04-12T02:00:06.763Z","response_time":58,"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":["clone","docker","express","mongoose","node","nodejs","passport","twitter","twitter-api","twitter-clone","vuejs","vuex"],"created_at":"2025-01-03T17:53:54.950Z","updated_at":"2026-04-12T03:37:42.974Z","avatar_url":"https://github.com/dgknbtl.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MEVN Stack Twitter Clone\n\n#### A twitter clone made with MongoDB, Express, Vue.js, Node.js.  \n---\n## Tech \u0026 Tools\n- Node.js\n- Mongoose\n- Express \n- Vue.js, Vuex, Vue Router \n- Axios \n- Passport.js \n- Pug\n- PostCSS\n\n\u003cimg src=\"https://user-images.githubusercontent.com/10329339/181353619-53a3f2f2-cecd-4e5e-b426-630a28733cce.jpg\"  width=\"900\" /\u003e\n\u003cimg src=\"https://user-images.githubusercontent.com/10329339/181353631-eb6b560f-27a8-40eb-8539-3c7749f7c214.jpg\"  width=\"900\" /\u003e\n\n---\n## Running with Docker Compose\nInstall [Docker](https://docs.docker.com/get-docker/)\n\n```\ndocker-compose up --build\n```\n---\n## Running the Project\n\n### Backend\n\n```\ncd backend\nnpm install\nnpm run watch \nnpm run start #(for running without nodemon)\n```\n\n### Frontend\n\n```\ncd frontend\nnpm install\nnpm run serve\n```\n---\n### API Endpoints\n```\n\nPOST http://localhost:3000/users/register HTTP/1.1\ncontent-type: application/json\n\n{\"name\": \"Dogukan Batal\", \"email\": \"hi@dogu.dev\", \"password\":\"123456\", \"confirmPassword\":\"123456\", \"handle\":\"dogudev\" }\n\n###\n\n# authenticate a user\nPOST http://localhost:3000/users/login HTTP/1.1\ncontent-type: application/json\n\n{ \"email\": \"hi@dogu.dev\", \"password\":\"123456\"}\n\n###\n\n# logout a user\nGET http://localhost:3000/users/logout HTTP/1.1\n\n###\n\n# check logged in \nGET http://localhost:3000/users/login HTTP/1.1\n\n###\n\n# follow a user\nGET http://localhost:3000/users/62d19fa8cedf1f8122207de1/follow HTTP/1.1\n\n###\n\n# unfollow a user\nGET http://localhost:3000/users/62cd5ff064c58db028b1d160/unfollow HTTP/1.1\n\n\n###############################################\n\n# get all tweets\nGET http://localhost:3000/tweets HTTP/1.1\n\n###\n\n# get a tweet\nGET http://localhost:3000/tweets/62cc944a4155c1c28a9df1a5 HTTP/1.1\n\n###\n\n# create a new tweet\nPOST http://localhost:3000/tweets/new HTTP/1.1\ncontent-type: application/json\n\n{\"content\": \"It is a test tweet.\"}\n\n###\n\n# remove a tweet\nDELETE http://localhost:3000/tweets/62cc652975266e7236b64eda HTTP/1.1\n\n###\n\n# like a tweet\nPATCH http://localhost:3000/tweets/62d1dc4517e02d5ebc285c1d/like HTTP/1.1\n\n\n###\n\n# unlike a tweet\nPATCH http://localhost:3000/tweets/62d19f67cedf1f8122207dd0/unlike HTTP/1.1\n   \n###\n\n# retweet\nPATCH http://localhost:3000/tweets/62dfcd50f09e59c39ecc8249/retweet HTTP/1.1\ncontent-type: application/json\n\n{\"content\":\"It is a test retweet.\"}\n\n###\n\n# unretweet\nPATCH http://localhost:3000/tweets/62dfcd50f09e59c39ecc8249/unretweet HTTP/1.1\n```\n---\n\n\u003cimg src=\"https://user-images.githubusercontent.com/10329339/181353644-67e32df7-3a09-403f-9d83-b3dafa4b1d28.jpg\"  width=\"450\" /\u003e\n\u003cimg src=\"https://user-images.githubusercontent.com/10329339/181353645-1f24171a-2818-4b26-95ea-4310be9043f2.jpg\"  width=\"450\" /\u003e\n\n\n\n## LICENCE\nMIT License\n\nCopyright (c) 2022 Dogukan Batal\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdgknbtl%2Fmevn-stack-twitter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdgknbtl%2Fmevn-stack-twitter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdgknbtl%2Fmevn-stack-twitter/lists"}