{"id":13316437,"url":"https://github.com/gymitoso/mean-stack","last_synced_at":"2026-03-02T18:43:15.349Z","repository":{"id":38576752,"uuid":"252910282","full_name":"gymitoso/mean-stack","owner":"gymitoso","description":"A full-stack JavaScript solution that uses MongoDB, Express, Angular 9, and Node.js","archived":false,"fork":false,"pushed_at":"2023-01-11T07:46:23.000Z","size":1058,"stargazers_count":4,"open_issues_count":4,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-08T15:13:31.754Z","etag":null,"topics":["angular9","docker","docker-compose","express","mean","mean-stack","mongodb","nodejs"],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/gymitoso.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}},"created_at":"2020-04-04T04:43:28.000Z","updated_at":"2021-07-22T03:11:26.000Z","dependencies_parsed_at":"2023-02-09T02:15:15.310Z","dependency_job_id":null,"html_url":"https://github.com/gymitoso/mean-stack","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/gymitoso/mean-stack","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gymitoso%2Fmean-stack","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gymitoso%2Fmean-stack/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gymitoso%2Fmean-stack/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gymitoso%2Fmean-stack/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gymitoso","download_url":"https://codeload.github.com/gymitoso/mean-stack/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gymitoso%2Fmean-stack/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268343012,"owners_count":24235363,"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-08-02T02:00:12.353Z","response_time":74,"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":["angular9","docker","docker-compose","express","mean","mean-stack","mongodb","nodejs"],"created_at":"2024-07-29T18:21:38.562Z","updated_at":"2026-03-02T18:43:10.297Z","avatar_url":"https://github.com/gymitoso.png","language":"TypeScript","readme":"# Mean Stack\n\nA full-stack JavaScript solution, which provides a starting point for MongoDB, Node.js, Express, and Angular based applications.\n\n## Before You Begin\n\nBefore you begin I recommend you read about the basic building blocks that assemble a MEAN.JS application:\n\n- MongoDB - Go through [MongoDB Official Website](https://mongodb.org/) and proceed to their [Official Manual](https://docs.mongodb.com/manual/), which should help you understand NoSQL and MongoDB better.\n- Node.js - Start by going through [Node.js Official Website](http://nodejs.org/).\n- Express - The best way to understand express is through its [Official Website](http://expressjs.com/), which has a [Getting Started](http://expressjs.com/starter/installing.html) guide, as well as an [ExpressJS](http://expressjs.com/en/guide/routing.html) guide for general express topics.\n- Angular - Angular's [Official Website](https://angular.io/) is a great starting point.\n- Angular CLI - Go through [Angular CLI Official Website](https://cli.angular.io/) and check their [Overview Page](https://angular.io/cli)\n\n## Prerequisites\n\nMake sure you have installed all of the following prerequisites on your development machine:\n\n- Git - [Download \u0026 Install Git](https://git-scm.com/downloads). OSX and Linux machines typically have this already installed.\n- Node.js - [Download \u0026 Install Node.js](https://nodejs.org/en/download/) and the npm package manager.\n- Docker - You're going to use the [Docker](https://www.docker.com/) and [Docker Compose](https://docs.docker.com/compose/) to install MongoDB and setup the production environment.\n- Angular CLI - [Install Angular CLI](https://cli.angular.io/)\n\n## Cloning The GitHub Repository\n\nUse git to directly clone this repository:\n\n```bash\ngit clone https://github.com/gymitoso/mean-stack.git\n```\n\n## Quick Install\n\nTo install the dependencies, run this in the application folder from the command-line:\n\n```bash\nnpm install\n```\n\nAnd then install MongoDB with docker compose and execute the database migration:\n\n```bash\ndocker-compose -f ./docker/mongo.yml up -d\nnpm run migrate-db\n```\n\nThe first command will setup the MongoDB on port 27018 and the second will create a user (sys-admin@mean.com - admin) in MongoDB.\n\n## Running Your Application\n\nRun your application using npm:\n\n```bash\nnpm start\n```\n\nYour Angular application runs on port 4200 with the _development_ environment configuration, so in your browser just go to [http://localhost:4200](http://localhost:4200). The Node.js API runs on port 4000, so in your browser just go to [http://localhost:4000/api/health](http://localhost:4000/api/health) and the browser should display 'OK'.\n\n### Running in Production mode with Docker\n\nTo run your application with _production_ environment configuration:\n\n```bash\ndocker-compose up -d --build\n```\n\nThis will setup your Angular and Node.js application in port 4000. This application uses [Nginx](https://www.nginx.com/) to proxy requests in production.\n\n## Linting\n\nThis app includes a static code analysis setup with [ESLint](https://eslint.org/). I recommend that you install the relevant IDE extensions for ESLint. Once you do, every time you press save, all your code will be formatted and reviewed for quality automatically. I also set up a git hook to automatically analyze your code before it is committed.\n\n## Credits\n\n[Linnovate](https://github.com/linnovate/mean)\n\n[Mean.js](https://github.com/meanjs/mean)\n\n## License\n\n[The MIT License](LICENSE.md)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgymitoso%2Fmean-stack","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgymitoso%2Fmean-stack","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgymitoso%2Fmean-stack/lists"}