{"id":16412296,"url":"https://github.com/hamzahamidi/angular-forum","last_synced_at":"2025-03-16T16:32:41.647Z","repository":{"id":39576199,"uuid":"132448415","full_name":"hamzahamidi/angular-forum","owner":"hamzahamidi","description":"Forum application built with Angular","archived":false,"fork":false,"pushed_at":"2023-02-04T00:49:23.000Z","size":7127,"stargazers_count":74,"open_issues_count":8,"forks_count":46,"subscribers_count":9,"default_branch":"main","last_synced_at":"2024-10-12T06:48:23.759Z","etag":null,"topics":["angular","angular14","authentication","crud","demo","docker","docker-compose","gh-pages","github-actions","hacktober","hacktoberfest","javascript","jwt","jwt-authentication","typescript"],"latest_commit_sha":null,"homepage":"https://hamidihamza.com/angular-forum","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/hamzahamidi.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":"2018-05-07T11:04:00.000Z","updated_at":"2024-08-30T06:19:06.000Z","dependencies_parsed_at":"2022-08-28T21:20:15.865Z","dependency_job_id":null,"html_url":"https://github.com/hamzahamidi/angular-forum","commit_stats":null,"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hamzahamidi%2Fangular-forum","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hamzahamidi%2Fangular-forum/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hamzahamidi%2Fangular-forum/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hamzahamidi%2Fangular-forum/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hamzahamidi","download_url":"https://codeload.github.com/hamzahamidi/angular-forum/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":221666300,"owners_count":16860395,"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","angular14","authentication","crud","demo","docker","docker-compose","gh-pages","github-actions","hacktober","hacktoberfest","javascript","jwt","jwt-authentication","typescript"],"created_at":"2024-10-11T06:48:26.717Z","updated_at":"2024-10-27T10:58:15.200Z","avatar_url":"https://github.com/hamzahamidi.png","language":"TypeScript","readme":"\u003cp align=\"center\"\u003e\n    \u003ca href=\"https://github.com/hamzahamidi/angular-forum/actions?query=workflow%3ABuild\"\u003e\n        \u003cimg src=\"https://github.com/hamzahamidi/angular-forum/workflows/Build/badge.svg\" alt=\"Build Status\"\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://github.com/hamzahamidi/angular-forum/releases/latest\"\u003e\n        \u003cimg src=\"https://img.shields.io/github/release/hamzahamidi/angular-forum.svg\" alt=\"Release\"/\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://app.netlify.com/sites/demo-forum/deploys\"\u003e\n        \u003cimg src=\"https://api.netlify.com/api/v1/badges/9119af54-2449-4044-980d-2528a15fd2f4/deploy-status\" alt=\"Build Status\"\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://github.com/hamzahamidi/angular-forum/blob/main/LICENSE\"\u003e\n        \u003cimg src=\"https://img.shields.io/github/license/hamzahamidi/angular-forum.svg\" alt=\"License MIT\"\u003e\n    \u003c/a\u003e\n\u003c/p\u003e\n\n\u003e ### Angular project containing real world examples (CRUD, auth, advanced patterns, etc).\n\n# ![Angular Forum App](logo.png)\n\n\n### [Demo](http://hamidihamza.com/angular-forum)\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\n\nThis codebase was created to demonstrate a fully fledged application built with Angular that interacts with an actual backend server including CRUD operations, authentication, routing, pagination, and more.\n\n\n# Getting started\n\nMake sure you have the [Angular CLI](https://github.com/angular/angular-cli#installation) installed globally. \n\nWe use npm the default package manager of NodeJs \u0026 install the dependencies with `npm install`.\n\nRun `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.\n\n## Building the project\nRun `npm run build` to build the project. The build artifacts will be stored in the `dist/` directory.\n\n## Docker\n\nOr simply run the example using docker:\n\n```bash\ndocker-compose up\n```\nThen navigate to `http://localhost:4200/\n\n## Functionality overview\n\nThe example application is a social blogging site (i.e. a Medium.com clone). You can view a live demo over at http://hamidihamza.com/angular-forum/\n\n**General functionality:**\n\n- Authenticate users via JWT (login/signup pages + logout button on settings page)\n- CRU* users (sign up \u0026 settings page - no deleting required)\n- CRUD Articles\n- CR*D Comments on articles (no updating required)\n- GET and display paginated lists of articles\n- Favorite articles\n- Follow other users\n\n**The general page breakdown looks like this:**\n\n- Home page (URL: /#/ )\n    - List of tags\n    - List of articles pulled from either Feed, Global, or by Tag\n    - Pagination for list of articles\n- Sign in/Sign up pages (URL: /#/login, /#/register )\n    - Uses JWT (store the token in localStorage)\n    - Authentication can be easily switched to session/cookie based\n- Settings page (URL: /#/settings )\n- Editor page to create/edit articles (URL: /#/editor, /#/editor/article-slug-here )\n- Article page (URL: /#/article/article-slug-here )\n    - Delete article button (only shown to article's author)\n    - Render markdown from server client side\n    - Comments section at bottom of page\n    - Delete comment button (only shown to comment's author)\n- Profile page (URL: /#/profile/:username, /#/profile/:username/favorites )\n    - Show basic user info\n    - List of articles populated from author's created articles or author's favorited articles\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhamzahamidi%2Fangular-forum","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhamzahamidi%2Fangular-forum","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhamzahamidi%2Fangular-forum/lists"}