{"id":14973244,"url":"https://github.com/neutron92/angular-atomic-design-typescript-skeleton","last_synced_at":"2025-10-26T23:30:32.892Z","repository":{"id":38568693,"uuid":"256075471","full_name":"neutron92/Angular-atomic-design-Typescript-Skeleton","owner":"neutron92","description":"Angular atomic design project template","archived":false,"fork":false,"pushed_at":"2023-07-11T08:24:32.000Z","size":1818,"stargazers_count":8,"open_issues_count":5,"forks_count":8,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-01T00:51:07.364Z","etag":null,"topics":["angular","angular2","angular4","angular5","angular6","angular7","angular8","angular9","atomic-design","lazy-loading","lazyload","storybook","testing"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/neutron92.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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-16T01:12:18.000Z","updated_at":"2024-11-14T02:32:09.000Z","dependencies_parsed_at":"2022-08-25T06:41:27.877Z","dependency_job_id":null,"html_url":"https://github.com/neutron92/Angular-atomic-design-Typescript-Skeleton","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neutron92%2FAngular-atomic-design-Typescript-Skeleton","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neutron92%2FAngular-atomic-design-Typescript-Skeleton/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neutron92%2FAngular-atomic-design-Typescript-Skeleton/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neutron92%2FAngular-atomic-design-Typescript-Skeleton/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/neutron92","download_url":"https://codeload.github.com/neutron92/Angular-atomic-design-Typescript-Skeleton/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238408636,"owners_count":19467141,"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","angular2","angular4","angular5","angular6","angular7","angular8","angular9","atomic-design","lazy-loading","lazyload","storybook","testing"],"created_at":"2024-09-24T13:48:25.926Z","updated_at":"2025-10-26T23:30:32.509Z","avatar_url":"https://github.com/neutron92.png","language":"TypeScript","readme":"\n# Angular atomic design\nThis project is an angular template of atomic design\n  \n\n# Concept\n![Atomic Design](Documentations/atomicD.png)\n  \n\n## Description\n\n - Atoms: Dumb components (we cannot call any service or conditional (intelligent) expression it is only for displaying info that's all and doesn't have a unit test it has a storybook to display forms that can be taken with the props (inputs))\n - Molecules: intelligent components group of Atoms(you can call services and conditional expressions and it can have a unit test if it is intelligent or sotrybook if it has inputs and it is not intelligent)\n - Organisms: intelligent components group of Molecules(you can call services and conditional expressions and it can have a unit test if it is intelligent or sotrybook if it has inputs and it is not intelligent)\n - Templates: intelligent components group of Organisms and layout Designs(you can call services and conditional expressions and it can have a unit test if it is intelligent or sotrybook if it has inputs and it is not intelligent)\n - Pages: Generally used to group common components like header and footer with internal templates\n - Commun Folder: contains the common pages (as about us, terms and conditions) and common components headers, footers ....\n - Services Folder: contains API calls and common services and modules\n\n  \n## Example usefull CLI\n```\n\nng generate module exampleForm --route exampleForm --module app.module\n\nng generate module example-form/pages/page1 --route page1 --module example-form.module\n\nng generate module example-form/Templates/example-temp --module example-form/pages/page1/page1.module\nng generate module example-form/Templates/example-temp2 --module example-form/pages/page1/page1.module\nng generate component example-form/Templates/example-temp\nng generate component example-form/Templates/example-temp2\n\nng generate module example-form/organisms/example-org --module example-form/pages/page1/page1.module\nng generate module example-form/organisms/example-org2 --module example-form/pages/page1/page1.module\nng generate module example-form/organisms/example-org3 --module example-form/pages/page1/page1.module\nng generate component example-form/organisms/example-org\nng generate component example-form/organisms/example-org2\nng generate component example-form/organisms/example-org3\n\nng generate module example-form/molecules/form --module example-form/organisms/example-org/example-org.module\nng generate module example-form/molecules/avatar-container --module example-form/organisms/example-org2/example-org2.module\nng generate module example-form/molecules/label-conatiner --module example-form/organisms/example-org/example-org.module\nng generate module example-form/molecules/list-conatiner --module example-form/organisms/example-org3/example-org3.module\nng generate component example-form/molecules/form\nng generate component example-form/molecules/avatar-container\nng generate component example-form/molecules/label-conatiner\nng generate component example-form/molecules/list-conatiner\n  \nng generate module example-form/atoms/rich-text --module example-form/molecules/form/form.module\nng generate module example-form/atoms/avatar-comp --module example-form/molecules/avatar-container/avatar-container.module\nng generate module example-form/atoms/button --module example-form/molecules/form/form.module\nng generate module example-form/atoms/text --module example-form/molecules/form/form.module\nng generate module example-form/atoms/label --module example-form/molecules/label-conatiner/label-conatiner.module\nng generate module example-form/atoms/list --module example-form/molecules/list-conatiner/list-conatiner.module\nng generate component example-form/atoms/avatar-comp\nng generate component example-form/atoms/button\nng generate component example-form/atoms/button\nng generate component example-form/atoms/text\nng generate component example-form/atoms/label\nng generate component example-form/atoms/list\n\nng generate service services/nom-service\n\n```\n# Perspective\nwe want to add\n\n-  [@ngrx/store](https://ngrx.io/guide/store) - RxJS powered state management for Angular apps, inspired by Redux\n\n-  [@ngrx/effects](https://ngrx.io/guide/effects) - Side effect model for @ngrx/store\n\n-  [@ngrx/router-store](https://ngrx.io/guide/router-store) - Bindings to connect the Angular Router to @ngrx/store\n\n-  [@ngrx/entity](https://ngrx.io/guide/entity) - Entity State adapter for managing record collections.\n\n-  [@ngrx/store-devtools](https://ngrx.io/guide/store-devtools) - Instrumentation for @ngrx/store enabling time-travel debugging\n\n-  [@angular/router](https://angular.io/guide/router) - Angular Router\n\n-  [@angular/material](https://github.com/angular/material2) - Angular Material\n\n-  [jest](https://facebook.github.io/jest/) - JavaScript test runner with easy setup, isolated browser testing and snapshot testing\n\n### DummyAPI to test\n\n-  [https://any-api.com/](https://any-api.com/)\n\n-  [https://reqres.in/](https://reqres.in/)\n\n-  [https://www.programmableweb.com/category/books/api](https://www.programmableweb.com/category/books/api)\n\n\n\n\n## Development server\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\n## Code scaffolding \nRun `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.\n  \n\n## Build \nRun `ng build` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `--prod` flag for a production build. \n\n\n## Running unit tests\nRun `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).\n\n\n## Running end-to-end tests\nRun `ng e2e` to execute the end-to-end tests via [Protractor](http://www.protractortest.org/).\n\n  \n\n## Further help\nTo get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md).\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneutron92%2Fangular-atomic-design-typescript-skeleton","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fneutron92%2Fangular-atomic-design-typescript-skeleton","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneutron92%2Fangular-atomic-design-typescript-skeleton/lists"}