{"id":20709575,"url":"https://github.com/techjmi/calendar","last_synced_at":"2026-04-07T18:31:57.371Z","repository":{"id":262598778,"uuid":"887763088","full_name":"techjmi/calendar","owner":"techjmi","description":"Calendar With CURD","archived":false,"fork":false,"pushed_at":"2024-11-13T09:19:35.000Z","size":79,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-03T14:35:21.065Z","etag":null,"topics":["calendar","calendarevents","internship","mongodb","nodejs","projects","reactjs","reacttoastify","tailwindcss"],"latest_commit_sha":null,"homepage":"https://calendar-8nsa.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/techjmi.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-13T08:41:14.000Z","updated_at":"2024-11-13T09:19:39.000Z","dependencies_parsed_at":"2024-11-13T09:47:46.414Z","dependency_job_id":null,"html_url":"https://github.com/techjmi/calendar","commit_stats":null,"previous_names":["techjmi/calendar"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/techjmi/calendar","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techjmi%2Fcalendar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techjmi%2Fcalendar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techjmi%2Fcalendar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techjmi%2Fcalendar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/techjmi","download_url":"https://codeload.github.com/techjmi/calendar/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techjmi%2Fcalendar/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":["calendar","calendarevents","internship","mongodb","nodejs","projects","reactjs","reacttoastify","tailwindcss"],"created_at":"2024-11-17T02:07:01.688Z","updated_at":"2026-04-07T18:31:57.350Z","avatar_url":"https://github.com/techjmi.png","language":"JavaScript","readme":"\n# Calendar App\n\nA fully functional calendar application built with **React** for the frontend and **Node.js** (Express) for the backend. This app allows users to perform CRUD (Create, Read, Update, Delete) operations on events, with a responsive design that works well on both desktop and mobile devices. The app is powered by **MongoDB** for data storage, and **dotenv** is used for environment variable management.\n\n## Features\n\n- **Create, Read, Update, Delete Events**: Users can add, edit, view, and delete events on the calendar.\n- **Responsive Design**: Optimized for both mobile and desktop views.\n- **Backend and Frontend Separation**: The backend and frontend are deployed separately with their respective live URLs.\n- **MongoDB Integration**: All event data is stored in MongoDB for persistent storage.\n- **Environment Variables**: Sensitive information like database credentials and API keys are securely stored using `.env` files.\n\n## Live Demo\n\n- **Frontend (React)**: [Calendar Frontend](https://calendar-8nsa.onrender.com/)\n- **Backend (Node.js)**: [Calendar Backend](https://calendar-backend-00zx.onrender.com)\n- **Portfolio (Designed by Md Shamim Akhter)**: [Shamim Portfolio](https://shamim-portfolio-u1yp.onrender.com/)\n\n## Tech Stack\n\n- **Frontend**: React, React Calendar, Tailwind CSS\n- **Backend**: Node.js, Express, MongoDB\n- **Database**: MongoDB\n- **Authentication**: No authentication implemented\n- **Environment Variables**: dotenv for managing environment settings\n\n## Installation\n\n### Frontend\n\n1. Clone the frontend repository:\n   ```bash\n   git clone https://github.com/techjmi/calendar.git\n   ```\n\n2. Install the required dependencies:\n   ```bash\n   cd calendar-frontend\n   npm install\n   ```\n\n3. Start the React development server:\n   ```bash\n   npm run dev\n   ```\n\n### Backend\n\n1. Clone the backend repository:\n   ```bash\n   git clone https://github.com/techjmi/calendar_backend\n   ```\n\n2. Install the required dependencies:\n   ```bash\n   cd calendar-backend\n   npm install\n   ```\n\n3. Create a `.env` file in the root of the backend project and add your MongoDB URI and other necessary environment variables:\n   ```env\n   MONGO_URI=your_mongo_database_url\n   PORT=5000\n   ```\n\n4. Start the backend server:\n   ```bash\n   npm start\n   ```\n\n## API Endpoints\n\n### Events\n\n- **GET /events**: Fetch all events\n- **POST /create**: Create a new event\n- **PUT /edit/:id**: Update an existing event\n- **DELETE /delete/:id**: Delete an event\n\n### Example\n\n#### Fetch All Events\n```bash\nGET /events\n```\n\n#### Create a New Event\n```bash\nPOST /events\n{\n  \"title\": \"Meeting\",\n  \"description\": \"Team meeting\",\n  \"eventDate\": \"2024-12-01T10:00:00Z\"\n}\n```\n\n#### Update an Event\n```bash\nPUT /edit/:id\n{\n  \"title\": \"Updated Meeting\",\n  \"description\": \"Updated team meeting\",\n  \"eventDate\": \"2024-12-02T10:00:00Z\"\n}\n```\n\n#### Delete an Event\n```bash\nDELETE /delete/:id\n```\n\n## Environment Variables\n\nCreate a `.env` file in the root directory for the backend to store sensitive information securely:\n\n```\nMONGO_URI=your_mongo_database_url\nPORT=5000\n```\n\n## How to Contribute\n\n1. Fork the repository.\n2. Create your feature branch (`git checkout -b feature/your-feature`).\n3. Commit your changes (`git commit -am 'Add new feature'`).\n4. Push to your branch (`git push origin feature/your-feature`).\n5. Create a new Pull Request.\n\n## Acknowledgements\n\n- Designed and developed by [Md Shamim Akhter](https://shamim-portfolio-u1yp.onrender.com/).\n- Special thanks to the creators of the **React Calendar** and **Tailwind CSS** for the awesome libraries!\n\n---\n\nThis README provides all the necessary information for users to install, use, and contribute to your calendar project. Let me know if you need any changes or additions!\n\n# React + Vite\n\nThis template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.\n\nCurrently, two official plugins are available:\n\n- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh\n- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftechjmi%2Fcalendar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftechjmi%2Fcalendar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftechjmi%2Fcalendar/lists"}