{"id":22812114,"url":"https://github.com/olha-dev-fullstack/mongo-express-apps","last_synced_at":"2026-04-11T10:32:50.309Z","repository":{"id":267350614,"uuid":"899449346","full_name":"olha-dev-fullstack/mongo-express-apps","owner":"olha-dev-fullstack","description":"This repository contains three projects that demonstrate the usage of MongoDB with Mongoose, Express, and Mocha for testing","archived":false,"fork":false,"pushed_at":"2024-12-11T10:09:32.000Z","size":175,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-03T14:36:23.254Z","etag":null,"topics":["express","mocha","mongodb","mongoose"],"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/olha-dev-fullstack.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-12-06T09:41:02.000Z","updated_at":"2024-12-11T10:17:11.000Z","dependencies_parsed_at":"2024-12-09T21:24:21.656Z","dependency_job_id":"3978147a-2851-4f55-8923-b9f16b2957e5","html_url":"https://github.com/olha-dev-fullstack/mongo-express-apps","commit_stats":null,"previous_names":["olha-dev-fullstack/mongo-users-app","olha-dev-fullstack/mongo-express-apps"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/olha-dev-fullstack/mongo-express-apps","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/olha-dev-fullstack%2Fmongo-express-apps","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/olha-dev-fullstack%2Fmongo-express-apps/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/olha-dev-fullstack%2Fmongo-express-apps/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/olha-dev-fullstack%2Fmongo-express-apps/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/olha-dev-fullstack","download_url":"https://codeload.github.com/olha-dev-fullstack/mongo-express-apps/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/olha-dev-fullstack%2Fmongo-express-apps/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31677813,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-11T08:18:19.405Z","status":"ssl_error","status_checked_at":"2026-04-11T08:17:08.892Z","response_time":54,"last_error":"SSL_read: 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":["express","mocha","mongodb","mongoose"],"created_at":"2024-12-12T12:09:55.335Z","updated_at":"2026-04-11T10:32:50.300Z","avatar_url":"https://github.com/olha-dev-fullstack.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MongoDB and Express Projects\n\nThis repository contains three projects that demonstrate the usage of MongoDB with Mongoose, Express, and Mocha for testing. Below is a detailed description of each project and instructions on how to run them.\n\n---\n\n## 1. Mocha Tests App\n\n### Description\n\nThis project contains mongoDB schemas of users, posts, blogPotsts and comments and mainly focuses on testing entities management and relations using Mocha.\n\n### Features\n\n- Tests backend endpoints.\n- Uses Mocha for writing and running tests.\n\n### File Structure\n\n- `src/`: Contains MongoDB schemas\n- `test/`: Contains test cases written in Mocha.\n\n### How to Run\n\n1. Navigate to the project directory:\n   ```bash\n   cd mocha-tests-app\n   ```\n2. Install dependencies:\n   ```bash\n   npm install\n   ```\n3. Run the tests:\n   ```bash\n   npm run test\n   ```\n\n---\n\n## 2. Uber Prototype Express\n\n### Description\n\nThis project is a prototype of an Uber-like service built with Express.js and MongoDB using Mongoose for database operations.\n\n### Features\n\n- Defines models for managing ride and user data.\n- Implements basic routes for creating and retrieving data.\n\n### File Structure\n\n- `app.js`: Entry point of the application.\n- `controllers/`: Handles the business logic for routes.\n- `models/`: Contains the Mongoose models.\n- `routes/`: Defines the API endpoints.\n- `test/`: Includes Mocha tests for the API.\n\n### How to Run\n\n1. Navigate to the project directory:\n   ```bash\n   cd uber-prototype-express\n   ```\n2. Install dependencies:\n   ```bash\n   npm install\n   ```\n3. Start the application:\n   ```bash\n   node app.js\n   ```\n4. Run the tests:\n   ```bash\n   npm run test\n   ```\n\n---\n\n## 3. Up Star Music App\n\n### Description\n\nThis project is a music application where you can manage artists and their albums. It uses MongoDB for storing data and demonstrates CRUD operations.\n\n### Features\n\n- Manages artist data (CRUD operations).\n- Uses a simple frontend with a bundled JavaScript file.\n\n### File Structure\n\n- `index.js`: Entry point of the application.\n- `database/`: Contains scripts for interacting with the database.\n- `style/`: CSS files for the frontend.\n- `tasks/`: Includes build tasks (e.g., Webpack configurations).\n- `webpack.config.js`: Configuration for bundling JavaScript files.\n\n### How to Run\n\n1. Navigate to the project directory:\n   ```bash\n   cd up-star-music-app\n   ```\n2. Install dependencies:\n   ```bash\n   npm install --legacy-peer-deps\n   ```\n3. Start the application:\n   ```bash\n   node index.js\n   ```\n4. The application will open on your PC using Electron for frontend\n\n---\n\n## Prerequisites\n\n- Node.js (v16 or later recommended)\n- MongoDB (running locally or configured connection URI)\n- Mocha (for running tests)\n\n## Common Setup\n\n1. Clone the repository:\n   ```bash\n   git clone https://github.com/olha-dev-fullstack/mongo-express-apps.git\n   ```\n2. Navigate to the desired project folder.\n3. Follow the specific setup and run instructions for each project.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Folha-dev-fullstack%2Fmongo-express-apps","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Folha-dev-fullstack%2Fmongo-express-apps","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Folha-dev-fullstack%2Fmongo-express-apps/lists"}