{"id":20284090,"url":"https://github.com/ilkaytech/nodejs-express-rentacar-api-project","last_synced_at":"2026-06-11T14:31:34.949Z","repository":{"id":204346162,"uuid":"711625367","full_name":"ilkaytech/NODEJS-EXPRESS-RentACar-API-Project","owner":"ilkaytech","description":null,"archived":false,"fork":false,"pushed_at":"2023-11-24T20:23:44.000Z","size":362,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-02T21:53:58.702Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/ilkaytech.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":"2023-10-29T20:32:00.000Z","updated_at":"2024-02-02T12:04:09.000Z","dependencies_parsed_at":null,"dependency_job_id":"f1b9381a-7438-499c-ada5-400a82bc535a","html_url":"https://github.com/ilkaytech/NODEJS-EXPRESS-RentACar-API-Project","commit_stats":null,"previous_names":["ilkaytech/nodejs-express-rentacar-api-project"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ilkaytech/NODEJS-EXPRESS-RentACar-API-Project","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ilkaytech%2FNODEJS-EXPRESS-RentACar-API-Project","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ilkaytech%2FNODEJS-EXPRESS-RentACar-API-Project/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ilkaytech%2FNODEJS-EXPRESS-RentACar-API-Project/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ilkaytech%2FNODEJS-EXPRESS-RentACar-API-Project/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ilkaytech","download_url":"https://codeload.github.com/ilkaytech/NODEJS-EXPRESS-RentACar-API-Project/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ilkaytech%2FNODEJS-EXPRESS-RentACar-API-Project/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34204177,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-11T02:00:06.485Z","response_time":57,"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":"2024-11-14T14:18:17.634Z","updated_at":"2026-06-11T14:31:34.927Z","avatar_url":"https://github.com/ilkaytech.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# RENT A CAR API\n\n### ERD:\n\n![ERD](./erdRentACarAPI.png)\n\n### Rent A Car Project\n\n- Customers;\n\n  - can select start and end date and see the list of available cars on selected dates. It is not allowed to choose past dates.\n  - can choose a car on the list and reserve that car, but can not reserve more than one car on a selected time period,\n  - can not reserve cars which are reserved by other customers on selected time period.\n  - can see the list of their reservations including past ones.\n  - can list, create, read their reservations.\n  - can not update, delete reservations.\n\n- Admins;\n\n  - can make CRUD operations on Car table,\n  - can make CRUD operations on Customer (User) table,\n  - can make CRUD operations on Reservation table,\n\n- It can be createdId and updatedId in Car model.\n- There will be searching, sorting and pagination capabilities on list views.\n\n---\n\n### Araç Kiralama Projesi\n\n- Müşteriler:\n  - Tarih aralığı belirtip müsait araç listeleyebilir. Geçmiş tarihler listelenmez.\n  - Seçilen tarih aralığında araç rezerve edilebilir, ancak aynı tarih aralığında ikinci bir araç kiralayamaz.\n  - Rezerve edilmiş bir aracı, o tarihlerde rezerve edemez.\n  - Rezervasyonlarını listeyebilir, ekleyebilir, okuyabilir.\n  - Rezervasyonlarını güncelleyemez, silemez.\n- Yöneticiler:\n\n  - Araba tablosu CRUD işlemleri\n  - Müşteri (User) tablosu CRUD işlemleri\n  - Reservasyon tablosu CRUD işlemleri\n\n- Araba tablosunda createdId ve updatedId olabilir.\n- Listeleme ekranlarında arama, sıralama ve sayfalama imkanları olacaktır.\n\n---\n\n### Folder/File Structure:\n\n```\n    .env\n    .gitignore\n    index.js\n    readme.md\n    src/\n        config/\n            dbConnection.js\n            swagger.json\n        controllers/\n            auth.js\n            car.js\n            reservation.js\n            token.js\n            user.js\n        helpers/\n            passwordEncrypt.js\n            sync.js\n        middlewares/\n            authentication.js\n            errorHandler.js\n            findSearchSortPage.js\n            logger.js\n            permissions.js\n        models/\n            car.js\n            reservation.js\n            token.js\n            user.js\n        routes/\n            auth.js\n            car.js\n            document.js\n            index.js\n            reservation.js\n            token.js\n            user.js\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Filkaytech%2Fnodejs-express-rentacar-api-project","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Filkaytech%2Fnodejs-express-rentacar-api-project","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Filkaytech%2Fnodejs-express-rentacar-api-project/lists"}