{"id":19412429,"url":"https://github.com/manjinderrooprai/angular","last_synced_at":"2026-04-12T17:55:17.982Z","repository":{"id":228522629,"uuid":"754963449","full_name":"manjinderrooprai/Angular","owner":"manjinderrooprai","description":"Angular POCs","archived":false,"fork":false,"pushed_at":"2024-06-21T07:25:09.000Z","size":306,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"develop","last_synced_at":"2025-01-07T15:28:52.015Z","etag":null,"topics":["angular","bootstrap","css3","html5","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/manjinderrooprai.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-02-09T05:54:30.000Z","updated_at":"2024-06-21T07:25:12.000Z","dependencies_parsed_at":"2024-05-02T08:27:13.983Z","dependency_job_id":"68eb42d8-2667-4d84-9126-e049daf100cb","html_url":"https://github.com/manjinderrooprai/Angular","commit_stats":null,"previous_names":["manjinderrooprai/angular"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manjinderrooprai%2FAngular","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manjinderrooprai%2FAngular/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manjinderrooprai%2FAngular/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manjinderrooprai%2FAngular/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/manjinderrooprai","download_url":"https://codeload.github.com/manjinderrooprai/Angular/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240593175,"owners_count":19825929,"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","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":["angular","bootstrap","css3","html5","typescript"],"created_at":"2024-11-10T12:26:40.153Z","updated_at":"2026-04-12T17:55:12.938Z","avatar_url":"https://github.com/manjinderrooprai.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Angular\nWelcome to the Angular PoCs (Proof of Concepts) repository! This repository serves as a collection of Angular Proof of Concepts, demonstrating various features, techniques, and integrations within Angular applications.\n\n[Angular 17](https://angular.dev/)\n\n## Angular 17 Key Features\n1. **Standalone Components by Default:** This simplifies application structure. You can create components without the need for an Ngmodule, potentially leading to cleaner code and faster development.\n2. **Strict Templates:** Angular 17 enforces stricter templates by default. This helps catch errors early in the development process, leading to more robust applications.\n3. **Improved Language Service:** The language service in Angular 17 provides better autocompletion, diagnostics, and navigation within your Angular templates. This can significantly improve development speed and code quality.\n4. **Optional Chaining in Templates:** Optional chaining allows you to safely access properties of potentially nullish values within your templates. This helps prevent errors and improves code readability.\n5. **Enhanced Performance with Differential Loading:** Angular 17 improves bundle splitting by allowing for differential loading. This means only the necessary code is loaded for a specific route or feature, leading to faster initial load times for your application.\n   \n## Prerequisites\n**Node.js and npm:** Angular relies on Node.js and npm (Node Package Manager) to run. Download and install the latest version of Node.js from the official website https://nodejs.org/en/download. This will also install npm.\n\n### Install the Angular CLI:\n- Open the integrated terminal in VS Code (Terminal \u003e New Terminal) or System Terminal.\n- Run the following command to install the **Angular CLI globally:**\n  `npm install -g @angular/cli`\n\n### Setup\n1. **Clone the Repository:**\n   `git@github.com:manjinderrooprai/Angular.git`\n2. **Open Directory:**\n   `cd ~/Angular`\n3. **Open Project in Vscode:**\n   `code .`\n4. **Go to specific project directory:**\n   `cd Specific-project`\n5. **Install dependencies:**\n   `npm install`\n6. **Run the development server:**\n   `ng serve`\n   \nOnce the application has started, you can access it by opening a web browser and navigating to http://localhost:8000](https://locall.host/4200/ (assuming the application runs on port 4200).\n\n**NOTE:** The app will automatically reload if you change any of the source files.\n\n## Development Server\nAngular utilizes the Angular CLI for development tasks. You can use the following commands:\n\n* **Development server:** ng serve\n* **Build:** ng build\n* **Unit tests:** ng test\n* **End-to-end tests:** ng e2e\n\n## Json Server\n1. **Install** `npm install json-server`\n2. **Create a db.json or db.json5 file:**\n```\n   { \"employees\" : [\n      {\n         \"id\": 1,\n         \"firstName\": \"Santhosh\",\n         \"lastName\": \"Vernekar\",\n         \"age\": 30,\n         \"email\": \"santosh@gmail.com\",\n         \"phoneNumber\": \"9999999999\",\n         \"address\": \"111-5770 Hastings st, burnaby, bc, canada\"\n      },\n      {\n         \"id\": 2,\n         \"firstName\": \"Virat\",\n         \"lastName\": \"Kohli\",\n         \"age\": 28,\n         \"email\": \"Virat@gmail.com\",\n         \"phoneNumber\": \"9999999900\",\n         \"address\": \"111-5777 Hastings st, burnaby, bc, canada\"\n      }\n   ]\n}\n```\n3. **Run Sever:** 'npx json-server employees-db.json or json-server --watch employees-db.json' \n4. **Get a REST api:**\n```\n$ curl http://localhost:3000/employees/1\n   {\n         \"id\": 1,\n         \"firstName\": \"Santhosh\",\n         \"lastName\": \"Vernekar\",\n         \"age\": 30,\n         \"email\": \"santosh@gmail.com\",\n         \"phoneNumber\": \"9999999999\",\n         \"address\": \"111-5770 Hastings st, burnaby, bc, canada\"\n      }\n```\n**Run json-server --help for a list of options.**\n\n## Projcet Structure\n**The project follows a standard Angular folder structure.**\n- **src/:** Contains the source files for the Angular application.\n    - **app/:** Contains the components, modules, services, and other Angular elements.\n    - **assets/:** Contains static assets like images, fonts, etc.\n    - **environments/:** Contains environment-specific configuration files.\n\n    This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 17.3.0.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanjinderrooprai%2Fangular","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmanjinderrooprai%2Fangular","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanjinderrooprai%2Fangular/lists"}