{"id":31654757,"url":"https://github.com/jaoshigithub/mecat","last_synced_at":"2026-04-06T02:33:16.348Z","repository":{"id":313882915,"uuid":"1052249663","full_name":"JaoShiGitHub/MeCat","owner":"JaoShiGitHub","description":"A full-stack blog management application where users can create, edit, search, and manage their own blogs.","archived":false,"fork":false,"pushed_at":"2025-09-28T09:37:34.000Z","size":5758,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-28T11:29:17.066Z","etag":null,"topics":["api-design","authentication","backend","bcrypt","database","database-schema","express","figma","frontend","html","jwt","nodejs","postgresql","react","redis","restful-api","sql","state-management","tailwindcss","ui-design"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/JaoShiGitHub.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-07T17:52:56.000Z","updated_at":"2025-09-28T08:13:32.000Z","dependencies_parsed_at":"2025-09-09T11:02:45.093Z","dependency_job_id":"6291deab-0bd8-4063-ab66-75a853e8f0e0","html_url":"https://github.com/JaoShiGitHub/MeCat","commit_stats":null,"previous_names":["jaoshigithub/mecat"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/JaoShiGitHub/MeCat","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JaoShiGitHub%2FMeCat","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JaoShiGitHub%2FMeCat/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JaoShiGitHub%2FMeCat/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JaoShiGitHub%2FMeCat/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JaoShiGitHub","download_url":"https://codeload.github.com/JaoShiGitHub/MeCat/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JaoShiGitHub%2FMeCat/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278772866,"owners_count":26043268,"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","status":"online","status_checked_at":"2025-10-07T02:00:06.786Z","response_time":59,"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":["api-design","authentication","backend","bcrypt","database","database-schema","express","figma","frontend","html","jwt","nodejs","postgresql","react","redis","restful-api","sql","state-management","tailwindcss","ui-design"],"created_at":"2025-10-07T12:15:56.772Z","updated_at":"2025-10-07T12:16:04.430Z","avatar_url":"https://github.com/JaoShiGitHub.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🐈 MeCat ✍️\n\nA full-stack blog management application where users can create, edit, search, and manage their own blogs.\n\n- **Frontend**: React, JavaScript, TailwindCSS\n- **Backend**: Node.js, Express.js, Redis, bcrypt, JSON Web Token\n- **Database**: PostgreSQL\n- **Design Tools**: Figma (UI), Google Sheets (API planning), draw.io (Database schema)\n\n## ✨ Features\n\n- User registration\n- User login\n- User logout\n- View all blogs\n- View own blogs\n- View single blog details\n- Search blogs\n- Edit own blog\n- Delete own blog\n\n## 📂 Project Structure\n\n```\n├── about-me-cat/               # Project designs \u0026 database setup screenshots\n|   ├── designs/                # API, UI, and database design\n|   ├── screenshots/            # Database setup screenshots \u0026 web page screenshots\n├── backend/                    # Backend API and server-side code\n│   ├── controllers/            # Functions handling API logic for routes\n│   ├── middlewares/            # Custom middlewares for authentication and input validation (register \u0026 login)\n│   ├── routers/                # API routes\n│   ├── utils/                  # Helper functions and utilities\n│   ├── .gitignore              # Specifies files to be ignored\n│   ├── app.js                  # Entry point for backend server\n│   └── package.json            # Backend dependencies\n├── frontend/                   # Frontend client-side code\n|   ├── public/                 # Public static files\n|   |   ├── images/             # Icons and images used in the frontend\n│   ├── src/                    # React components, styles, etc.\n│   │   ├── components/         # Reusable React components\n│   │   ├── contexts/           # React context for state management\n│   │   ├── pages/              # React page components\n│   │   ├── App.js              # Main App component\n│   │   ├── config.js           # Configuration variables (e.g., API base URL)\n│   │   ├── index.css           # Global CSS / Tailwind imports\n│   │   └── index.js            # React DOM rendering entry\n│   ├── .gitignore              # Specifies files to be ignored by Git\n│   ├── package.json            # Frontend dependencies\n│   └── tailwind.config.js      # TailwindCSS configuration\n├── .env.example                # Example environment variables\n├── LICENSE                     # License information\n└── README.md                   # The file you are currently reading\n```\n\n## ⚡️ Getting Started\n\n#### Clone the repository:\n\n```\ngit clone https://github.com/JaoShiGitHub/me-cat.git\ncd me-cat\n```\n\n#### Install dependencies:\n\n```\n# Install backend dependencies\ncd backend\nnpm install\n# Install frontend dependencies\ncd ../frontend\nnpm install\n```\n\n#### Set up environment variables:\n\n- Create a .env file in the backend/ directory based on the .env.example file.\n\n#### Set up database:\n\n- Database setup screenshots available in `about-me-cat/screenshots/database`\n\n#### Run the application:\n\n```\n# Start the backend server\ncd ../backend\nnpm start\n# Start the frontend development server\ncd ../frontend\nnpm start\n```\n\n(Grey = feature not yet included)\n![API Design](https://github.com/JaoShiGitHub/MeCat/blob/main/about-me-cat/designs/api-design.png)\n![Schema](https://github.com/JaoShiGitHub/MeCat/blob/main/about-me-cat/designs/schema.png)\n![Schema](https://github.com/JaoShiGitHub/MeCat/blob/main/about-me-cat/designs/me-cat.png)\nDesigned \u0026 created by JaoShiGitHub (Oshin)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjaoshigithub%2Fmecat","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjaoshigithub%2Fmecat","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjaoshigithub%2Fmecat/lists"}