{"id":16211981,"url":"https://github.com/alpayc/instor","last_synced_at":"2026-04-14T14:32:17.151Z","repository":{"id":182780982,"uuid":"669085581","full_name":"AlpayC/Instor","owner":"AlpayC","description":"The Furniture Organizer App is a MERN-based web app designed to help users organize their furniture by size categories: small, medium, and large.","archived":false,"fork":false,"pushed_at":"2023-11-06T22:17:33.000Z","size":998,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-13T23:15:49.026Z","etag":null,"topics":["backend","bcrypt","css","express","html5","javascript","jwt-authentication","mongodb","mongoose","react"],"latest_commit_sha":null,"homepage":"https://furniture-0vsl.onrender.com","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/AlpayC.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}},"created_at":"2023-07-21T09:57:49.000Z","updated_at":"2023-12-26T11:19:19.000Z","dependencies_parsed_at":null,"dependency_job_id":"1d81c2c2-93ec-4b11-a238-0addb6631f8e","html_url":"https://github.com/AlpayC/Instor","commit_stats":null,"previous_names":["alpayc/furniture_mern","alpayc/instor"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlpayC%2FInstor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlpayC%2FInstor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlpayC%2FInstor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlpayC%2FInstor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AlpayC","download_url":"https://codeload.github.com/AlpayC/Instor/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247736474,"owners_count":20987634,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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","bcrypt","css","express","html5","javascript","jwt-authentication","mongodb","mongoose","react"],"created_at":"2024-10-10T10:49:47.710Z","updated_at":"2026-04-14T14:32:17.086Z","avatar_url":"https://github.com/AlpayC.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"﻿# FULL Stack Application based on MERN - Furniture Organizer\r\n\r\nThe Furniture Organizer App is a full-stack web application based on the MERN (MongoDB, Express, React, Node.js) stack. The primary goal of this project is to provide users with a convenient tool to organize their furniture pieces within their homes or apartments according to size categories - small, medium, and large.\r\n\r\n## Features\r\n\r\n- **User-friendly Interface:** The app offers an intuitive and user-friendly interface, making it easy for users to navigate and manage their furniture items effortlessly.\r\n\r\n- **Organize by Size:** Users can categorize their furniture items into three size categories: small, medium, and large. This helps them visualize and plan their space more effectively.\r\n\r\n- **Add and Edit Furniture:** The app allows users to add new furniture items to their inventory. Additionally, users can edit existing furniture entries to update their details as needed.\r\n\r\n- **MongoDB Database:** The app utilizes MongoDB to store furniture data, enabling efficient data retrieval and storage.\r\n\r\n- **Express Backend:** The backend is built using Express, which ensures smooth communication between the frontend and the database.\r\n\r\n- **React Frontend:** The frontend is developed using React, offering a dynamic and interactive user experience.\r\n\r\n- **Authentication with hashing:** Finally the authentication mechanism is implemented. Password is stored in the database using the provided hashing function\r\n\r\n## Demo\r\n\r\nhttps://instor.alpaycelik.dev\r\n\r\n## Run Locally\r\n\r\nClone the project\r\n\r\n```bash\r\n  git clone https://github.com/AlpayC/Furniture_MERN\r\n```\r\n\r\nGo to the project directory and start the server incl. frontend\r\n\r\n```bash\r\n  cd backend\r\n```\r\n\r\nInstall dependencies\r\n\r\n```bash\r\n  npm install\r\n```\r\n\r\nStart the server\r\n\r\n```bash\r\n  node server.js\r\n```\r\n\r\n## Environment Variables\r\n\r\nTo run this project, you will need to add the following environment variables to your .env file in the specific directory\r\n\r\n./backend\r\n\r\n`CLOUDINARY_CLOUDNAME`\r\n\r\n`CLOUDINARY_API_KEY`\r\n\r\n`CLOUDINARY_API_SECRET`\r\n\r\n`MONGO_URI`\r\n\r\n`TOKEN_SECRET`\r\n\r\n`MAILGUN_API_KEY`\r\n\r\n`RENDER_EXTERNAL_URL`\r\n\r\n`APP_NAME`\r\n\r\n`MAILGUN_DOMAIN`\r\n\r\n./frontend\r\n\r\n`VITE_BACKEND_URL`\r\n\r\n## API Reference\r\n\r\n#### Get all items\r\n\r\n```http\r\n  GET /api/furniture\r\n```\r\n\r\n#### Get all items of a category\r\n\r\n```http\r\n  GET /api/furniture?size=${sizename}\r\n```\r\n\r\n| Parameter | Type     | Description                                        |\r\n| :-------- | :------- | :------------------------------------------------- |\r\n| `size`    | `string` | **Required**. value=\"klein\" or \"mittel\" or \"gross\" |\r\n\r\n#### Get item with id\r\n\r\n```http\r\n  GET /api/furniture/${id}\r\n```\r\n\r\n| Parameter | Type     | Description                       |\r\n| :-------- | :------- | :-------------------------------- |\r\n| `id`      | `string` | **Required**. Id of item to fetch |\r\n\r\n#### Post new item\r\n\r\n```http\r\n  POST /api/addFurniture/\r\n```\r\n\r\n| Form body     | Type     | Description                              |\r\n| :------------ | :------- | :--------------------------------------- |\r\n| `title`       | `string` | **Required**. title of new item          |\r\n| `room`        | `string` | **Required**. room size of new item      |\r\n| `size`        | `string` | **Required**. furniture size of new item |\r\n| `image`       | `file`   | **Required**. jpg/png file of new item   |\r\n| `description` | `string` | **Required**. description of new item    |\r\n\r\n#### Update item by id\r\n\r\n```http\r\n  PUT /api/updateFurniture/${id}\r\n```\r\n\r\n| Parameter | Type     | Description                       |\r\n| :-------- | :------- | :-------------------------------- |\r\n| `id`      | `string` | **Required**. Id of item to fetch |\r\n\r\n| Input field   | Type     | Description                |\r\n| :------------ | :------- | :------------------------- |\r\n| `title`       | `string` | title of new item          |\r\n| `room`        | `string` | room size of new item      |\r\n| `size`        | `string` | furniture size of new item |\r\n| `image`       | `file`   | jpg/png file of new item   |\r\n| `description` | `string` | description of new item    |\r\n\r\n#### Delete item by id\r\n\r\n```http\r\n  DELETE /api/deleteFurniture/${id}\r\n```\r\n\r\n| Parameter | Type     | Description                       |\r\n| :-------- | :------- | :-------------------------------- |\r\n| `id`      | `string` | **Required**. Id of item to fetch |\r\n\r\n## Authors\r\n\r\n- [@AlpayC](https://www.github.com/AlpayC)\r\n- [@BorisD2023](https://github.com/BorisD2023)\r\n\r\n## Roadmap\r\n\r\n- Additional query support\r\n\r\n- Add login / register functionality\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falpayc%2Finstor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falpayc%2Finstor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falpayc%2Finstor/lists"}