{"id":22013023,"url":"https://github.com/hassanshehzad1/e-commerce","last_synced_at":"2026-04-07T18:31:22.898Z","repository":{"id":261603362,"uuid":"884789856","full_name":"hassanshehzad1/E-commerce","owner":"hassanshehzad1","description":"Basic-ecommerce application using Node.js and Express.js with ejs as template engine and mongoDB for database. This project include user authentication, session managment, flash messaging and CRUD operations for products","archived":false,"fork":false,"pushed_at":"2024-11-07T12:09:00.000Z","size":2760,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-03T12:24:59.293Z","etag":null,"topics":["backend","expressjs","html-css-javascript","javascript","mongodb","nodejs"],"latest_commit_sha":null,"homepage":"","language":"CSS","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/hassanshehzad1.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":"2024-11-07T11:52:13.000Z","updated_at":"2025-02-19T12:54:03.000Z","dependencies_parsed_at":"2024-11-07T13:33:39.131Z","dependency_job_id":null,"html_url":"https://github.com/hassanshehzad1/E-commerce","commit_stats":null,"previous_names":["hassanshehzad1/e-commerce"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hassanshehzad1/E-commerce","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hassanshehzad1%2FE-commerce","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hassanshehzad1%2FE-commerce/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hassanshehzad1%2FE-commerce/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hassanshehzad1%2FE-commerce/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hassanshehzad1","download_url":"https://codeload.github.com/hassanshehzad1/E-commerce/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hassanshehzad1%2FE-commerce/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31524524,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T16:28:08.000Z","status":"ssl_error","status_checked_at":"2026-04-07T16:28:06.951Z","response_time":105,"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":["backend","expressjs","html-css-javascript","javascript","mongodb","nodejs"],"created_at":"2024-11-30T03:16:35.486Z","updated_at":"2026-04-07T18:31:22.858Z","avatar_url":"https://github.com/hassanshehzad1.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1\u003eE-commerce store\u003c/h1\u003e\n\u003cp\u003eThis is a basic e-commerce application using Node.js and Express.js, with ejs as a template engine and mongodb as a database. This project includes user authentication, session managment, flash messaging and basic crud operations for products\u003c/p\u003e\n\n\u003ch2\u003eKey features\u003c/h2\u003e\n\u003ch3\u003eUser authencition\u003c/h3\u003e\n\u003cp\u003eUses session for login managment with \u003cstrong\u003eexpress-session\u003c/strong\u003e\u003c/p\u003e\n\u003ch3\u003eDatabase inetgration\u003c/h3\u003e\n\u003cp\u003eMongoDB connected via mongoose\u003c/p\u003e\n\u003ch3\u003eTemplate Engine\u003c/h3\u003e\n\u003cp\u003eEJS to render dynamic pages.\u003c/p\u003e\n\u003ch3\u003eFile Upload multer\u003c/h3\u003e\n\u003cp\u003eis a setup for handling useful pages(useful for product image).\u003c/p\u003e\n\u003cp\u003eEJS to render dynamic pages.\u003c/p\u003e\n\u003ch3\u003eEnvironmental variables\u003c/h3\u003e\n\u003cp\u003eManaged thorough dotenv for sensitive information.\u003c/p\u003e\n\u003cp\u003eEJS to render dynamic pages.\u003c/p\u003e\n\u003ch3\u003eFalsh Messages\u003c/h3\u003e\n\u003cp\u003eShow feedback to users for login/logout pages..\u003c/p\u003e\n\n\u003ch2\u003eProject structure\u003c/h2\u003e\n\u003cp\u003eproject-root/\n├── config/                   # Configuration files\n│   └── db/\n│       └── conn.js           # MongoDB connection\n├── controllers/              # Controllers for handling logic\n├── middlewares/              # Custom middleware (e.g., flash)\n├── models/                   # Mongoose schemas/models\n├── public/                   # Static files (CSS, images, etc.)\n├── routes/                   # Route definitions\n│   ├── userRoutes.js\n│   ├── ownerRoutes.js\n│   ├── productRoutes.js\n│   └── indexRoute.js\n├── views/                    # EJS view templates\n│   ├── index.ejs\n│   ├── user/\n│   ├── owner/\n│   └── product/\n├── .env                      # Environment variables\n├── .gitignore                # Ignore node_modules, .env, etc.\n├── app.js                    # Main application file\n└── package.json        \u003c/p\u003e\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhassanshehzad1%2Fe-commerce","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhassanshehzad1%2Fe-commerce","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhassanshehzad1%2Fe-commerce/lists"}