{"id":24429731,"url":"https://github.com/aurelioo29/blog-system","last_synced_at":"2026-02-19T14:06:14.341Z","repository":{"id":258121272,"uuid":"872839836","full_name":"aurelioo29/Blog-System","owner":"aurelioo29","description":"A simple Blog System repository built with Next.js and MongoDB. It allows users to easily create and manage blog posts, providing a fast and SEO-friendly experience.","archived":false,"fork":false,"pushed_at":"2025-03-21T12:54:38.000Z","size":19823,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-11T21:19:22.495Z","etag":null,"topics":["axios","mongodb","nextjs","react-toastify","tailwindcss"],"latest_commit_sha":null,"homepage":"","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/aurelioo29.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,"zenodo":null}},"created_at":"2024-10-15T06:59:06.000Z","updated_at":"2025-03-21T12:54:41.000Z","dependencies_parsed_at":"2025-03-21T13:54:26.686Z","dependency_job_id":null,"html_url":"https://github.com/aurelioo29/Blog-System","commit_stats":null,"previous_names":["aurelioo29/blog-system"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/aurelioo29/Blog-System","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aurelioo29%2FBlog-System","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aurelioo29%2FBlog-System/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aurelioo29%2FBlog-System/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aurelioo29%2FBlog-System/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aurelioo29","download_url":"https://codeload.github.com/aurelioo29/Blog-System/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aurelioo29%2FBlog-System/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29616961,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-19T13:04:20.082Z","status":"ssl_error","status_checked_at":"2026-02-19T13:03:33.775Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["axios","mongodb","nextjs","react-toastify","tailwindcss"],"created_at":"2025-01-20T13:47:18.570Z","updated_at":"2026-02-19T14:06:14.323Z","avatar_url":"https://github.com/aurelioo29.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 📖 Blog System\n\nA blogging platform built with modern technologies like **Next.js**, **MongoDB**, **Axios**, **TailwindCSS**, and **React Toastify**. Users can create blogs, view detailed blog posts, and experience real-time interactions with a smooth UI.\n\n## ✨ Features\n\n- 📝 **View Blogs**: Browse through the list of blogs.\n- 🔍 **Blog Details**: Click on a blog to view its full details.\n- 🔔 **Notifications**: User-friendly notifications powered by `React Toastify`.\n\n## 🛠️ Tech Stack\n\n### 🌐 Frontend\n\n- ⚛️ **Next.js** : A React framework for building server-side rendered and static web applications.\n- 📡 **Axios**: For making HTTP requests.\n- 🎨 **TailwindCSS**: Utility-first CSS framework for styling.\n- 🔔 **React Toastify**: Elegant notifications for React applications.\n\n### 🗄️ Backend\n\n- 🍃 **MongoDB**: NoSQL database for storing blog data.\n- 📜 **Mongoose**: Object Data Modeling (ODM) library for MongoDB.\n\n## ✅ Prerequisites\n\nMake sure you have the following installed:\n\n- 🖥️ Node.js (v18 or above)\n- 🍃 MongoDB\n\n## 🚀 Installation\n\n1. **Clone the repository**:\n   ```bash\n   git clone \u003crepository-url\u003e\n   cd blog-system-main\n   ```\n2. Install dependencies:\n\n   ```bash\n   npm install\n   # or\n   yarn install\n   ```\n\n3. Configure MongoDB:\n\n   - Open the file lib/config/db.js.\n   - Replace the connection string with your MongoDB credentials:\n\n   ```js\n   import mongoose from \"mongoose\";\n\n   export const connectDB = async () =\u003e {\n     await mongoose.connect(\"your-mongodb-connection-string-here\");\n     console.log(\"Connected to MongoDB\");\n   };\n   ```\n\n4. Start the development server:\n   ```bash\n   npm run dev\n   # or\n   yarn dev\n   ```\n\n\u003cu\u003e🌐 The app will be available at http://localhost:3000.\u003c/u\u003e\n\n## 📜 Available Scripts\n\nIn the project directory, you can run:\n\n- 🔧 npm run dev: Runs the app in development mode.\n- 🏗️ npm run build: Builds the app for production.\n- 🚀 npm run start: Starts the production server.\n- 🧹 npm run lint: Runs linting checks.\n\n## 📂 Folder Structure\n\n```bash\nblog-system-main\n├── app                 # Pages and API routes\n├── assets              # Static assets like images\n├── components          # Reusable React components\n├── lib                 # Utility functions and helpers\n├── public              # Publicly accessible files\n├── styles              # Global CSS or Tailwind configuration\n├── tailwind.config.js  # TailwindCSS configuration\n└── package.json        # Project metadata and scripts\n```\n\n## 📦 Dependencies\n\nHere are the main dependencies used in this project:\n\n- axios: ^1.7.7\n- mongoose: ^8.7.1\n- next: ^14.2.23\n- react: ^18\n- react-dom: ^18\n- react-toastify: ^10.0.6\n- tailwindcss: Installed via PostCSS\n\n## 🤝 Contributions\n\nFeel free to fork this project and submit a pull request. Contributions are always welcome! 😊\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faurelioo29%2Fblog-system","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faurelioo29%2Fblog-system","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faurelioo29%2Fblog-system/lists"}