{"id":28823729,"url":"https://github.com/manoj-m-01/angular.js-1.8.3-example-apps","last_synced_at":"2026-05-06T02:31:54.824Z","repository":{"id":294505058,"uuid":"985369378","full_name":"MANOJ-M-01/Angular.js-1.8.3-Example-Apps","owner":"MANOJ-M-01","description":"This repository contains six AngularJS 1.8.3 projects, each demonstrating a different approach to managing AngularJS applications, along with Docker-based setups for both development and production environments.","archived":false,"fork":false,"pushed_at":"2025-05-20T17:56:54.000Z","size":202,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-21T09:33:33.273Z","etag":null,"topics":["angularjs","angularjs1","demo","docker","docker-compose"],"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/MANOJ-M-01.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":"2025-05-17T16:07:47.000Z","updated_at":"2025-05-20T17:56:57.000Z","dependencies_parsed_at":null,"dependency_job_id":"b07c578d-6142-4e04-98a8-5b927ef490b8","html_url":"https://github.com/MANOJ-M-01/Angular.js-1.8.3-Example-Apps","commit_stats":null,"previous_names":["manoj-m-01/angular.js-1.8.3-example-apps"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MANOJ-M-01/Angular.js-1.8.3-Example-Apps","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MANOJ-M-01%2FAngular.js-1.8.3-Example-Apps","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MANOJ-M-01%2FAngular.js-1.8.3-Example-Apps/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MANOJ-M-01%2FAngular.js-1.8.3-Example-Apps/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MANOJ-M-01%2FAngular.js-1.8.3-Example-Apps/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MANOJ-M-01","download_url":"https://codeload.github.com/MANOJ-M-01/Angular.js-1.8.3-Example-Apps/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MANOJ-M-01%2FAngular.js-1.8.3-Example-Apps/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32676077,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-05T11:29:49.557Z","status":"online","status_checked_at":"2026-05-06T02:00:08.308Z","response_time":117,"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":["angularjs","angularjs1","demo","docker","docker-compose"],"created_at":"2025-06-19T00:32:33.589Z","updated_at":"2026-05-06T02:31:54.819Z","avatar_url":"https://github.com/MANOJ-M-01.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AngularJS 1.8.3 Example Projects: Deployment \u0026 Structure Methods\n\nThis repository demonstrates multiple modern ways to structure and deploy AngularJS 1.8.3 applications, including Docker, monorepo, microservices, and serverless approaches. Each folder is a self-contained example with its own codebase and configuration.\n\n---\n\n## Project Overview\n\n| #   | Folder                      | Method/Pattern                    | Description                                                          |\n| --- | --------------------------- | --------------------------------- | -------------------------------------------------------------------- |\n| 01  | `01-angular-express`        | Classic Fullstack (Docker)        | AngularJS frontend + Express.js backend, separate containers         |\n| 02  | `02-express-public-angular` | Static Serve (Docker)             | Express.js serves AngularJS static files in a single container       |\n| 03  | `03-angular-gulp-jade`      | Gulp/Jade Build (Docker/Nginx)    | Gulp builds AngularJS+Jade, served by Nginx in production            |\n| 04  | `microservices-docker`      | Microservices (Docker)            | AngularJS frontend + multiple Express.js microservices               |\n| 05  | `05-monorepo-npm-workspace` | Monorepo (npm workspace + Docker) | npm workspace managed monorepo: AngularJS frontend \u0026 Express backend |\n| 06  | `06-monorepo-nx`            | Monorepo (Nx + Docker)            | Nx-managed monorepo: AngularJS frontend \u0026 Express backend            |\n\n---\n\n## Method Summaries\n\n### 1. Classic Fullstack (Docker Compose)\n\n- **Folder:** `01-angular-express`\n- **Pattern:** AngularJS frontend and Express.js backend run as separate Docker containers. Frontend consumes backend REST APIs.\n\n### 2. Static Serve (Docker Compose)\n\n- **Folder:** `02-express-public-angular`\n- **Pattern:** Express.js serves AngularJS static files and provides backend APIs in a single container.\n\n### 3. Gulp/Jade Build (Docker \u0026 Nginx)\n\n- **Folder:** `03-angular-gulp-jade`\n- **Pattern:** Gulp compiles Jade templates and assets; Nginx serves the production build. Supports live reload in dev.\n\n### 4. Microservices (Docker Compose)\n\n- **Folder:** `04-microservices-docker`\n- **Pattern:** AngularJS frontend and multiple backend microservices (users, products, orders), each in its own container. APIs are consumed independently by the frontend.\n\n### 5. Monorepo (NPM Workspace + Docker Compose)\n\n- **Folder:** `05-monorepo-npm-workspace`\n- **Pattern:** npm workspace manages both frontend and backend apps, with shared libraries. Docker Compose for orchestration.\n\n### 6. Monorepo (Nx + Docker Compose)\n\n- **Folder:** `06-monorepo-nx`\n- **Pattern:** Nx monorepo manages both frontend and backend apps, with shared libraries. Unified scripts and dependency graph. Docker Compose for orchestration.\n\n---\n\n## How to Run\n\nEach project folder contains its own README and Docker (or deployment) configuration. See the folder for details.\n\n- For Docker-based projects: `cd \u003cfolder\u003e \u0026\u0026 docker-compose up --build`\n- For serverless/static: build frontend, deploy to S3/Netlify, deploy backend functions to Lambda/etc.\n\n---\n\n## When to Use Each Method\n\n- **Classic Fullstack:** Simple, familiar, good for small/medium apps.\n- **Static Serve:** Easiest for simple apps, minimal setup.\n- **Gulp/Jade Build:** When you want a build pipeline and template pre-processing.\n- **Microservices:** For scalable, independently deployable backend services.\n- **Monorepo:** For large teams, code sharing, unified tooling.\n\n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanoj-m-01%2Fangular.js-1.8.3-example-apps","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmanoj-m-01%2Fangular.js-1.8.3-example-apps","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanoj-m-01%2Fangular.js-1.8.3-example-apps/lists"}