{"id":24632686,"url":"https://github.com/cedricduffournet/schematics-ngx-starter","last_synced_at":"2026-05-17T12:10:51.696Z","repository":{"id":35038970,"uuid":"199504582","full_name":"cedricduffournet/schematics-ngx-starter","owner":"cedricduffournet","description":"schematics-ngx-starter","archived":false,"fork":false,"pushed_at":"2022-12-09T20:14:49.000Z","size":1570,"stargazers_count":0,"open_issues_count":15,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-15T17:03:03.908Z","etag":null,"topics":["angular","shematics"],"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/cedricduffournet.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":"2019-07-29T18:13:55.000Z","updated_at":"2019-08-02T15:25:10.000Z","dependencies_parsed_at":"2023-01-15T12:45:36.967Z","dependency_job_id":null,"html_url":"https://github.com/cedricduffournet/schematics-ngx-starter","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/cedricduffournet%2Fschematics-ngx-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cedricduffournet%2Fschematics-ngx-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cedricduffournet%2Fschematics-ngx-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cedricduffournet%2Fschematics-ngx-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cedricduffournet","download_url":"https://codeload.github.com/cedricduffournet/schematics-ngx-starter/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244566934,"owners_count":20473451,"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","shematics"],"created_at":"2025-01-25T08:12:33.506Z","updated_at":"2026-05-17T12:10:46.665Z","avatar_url":"https://github.com/cedricduffournet.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Angular Schematic for ngx-starter app\n\nThe schematics in this library will help your generate CRUD feature in my [ngx-starter](https://github.com/cedricduffournet/ngx-starter.git).\n\n[![Build Status](https://travis-ci.com/cedricduffournet/schematics-ngx-starter.svg?branch=master)](https://travis-ci.com/cedricduffournet/schematics-ngx-starter)\n\n## Using Schematics\n\nRun schematics from your console in project.\n\n```bash\nng generate @cedricduff/schematics-ngx-starter:crud MyFeature\n```\n\nif you want to generate list with pagination add `--paginated` option\n\n```bash\nng generate @cedricduff/schematics-ngx-starter:crud MyFeature --paginated\n```\n\n![Alt text](assets/schematics.gif?raw=true \"@cedricduff/schematics:crud\")\n\n## Feature structure\n\n```tree\n    ├── ...\n    ├── src/\n    │   ├── app/\n    │       ├── my-feature\n    │           │── components\n    │           │    │── my-feature-add\n    │           │    │    │── my-feature-add.component.html\n    │           │    │    │── my-feature-add.component.spec.ts\n    │           │    │    │── my-feature-add.component.ts\n    │           │    │── my-feature-delete\n    │           │    │    │── my-feature-delete.component.html\n    │           │    │    │── my-feature-delete.component.spec.ts\n    │           │    │    │── my-feature-delete.component.ts\n    │           │    │── my-feature-form\n    │           │    │    │── my-feature-delete.component.html\n    │           │    │    │── my-feature-delete.component.spec.ts\n    │           │    │    │── my-feature-delete.component.ts\n    │           │    │── my-feature-item\n    │           │    │    │── my-feature-item.component.html\n    │           │    │    │── my-feature-item.component.spec.ts\n    │           │    │    │── my-feature-item.component.ts\n    │           │    │── my-feature-items\n    │           │    │    │── my-feature-items.component.html\n    │           │    │    │── my-feature-items.component.spec.ts\n    │           │    │    │── my-feature-items.component.ts\n    │           │    │── my-feature-update\n    │           │    │    │── my-feature-update.component.html\n    │           │    │    │── my-feature-update.component.spec.ts\n    │           │    │    │── my-feature-update.component.ts\n    │           │    │── index.ts\n    │           │── containers\n    │           │    │── my-feature-add-modal\n    │           │    │    │── my-feature-add-modal.component.html\n    │           │    │    │── my-feature-add-modal.component.spec.ts\n    │           │    │    │── my-feature-add-modal.component.ts\n    │           │    │── my-feature-delete\n    │           │    │    │── my-feature-delete-modal.component.html\n    │           │    │    │── my-feature-delete-modal.component.spec.ts\n    │           │    │    │── my-feature-delete-modal.component.ts\n    │           │    │── my-feature-list-view\n    │           │    │    │── my-feature-list-view.component.html\n    │           │    │    │── my-feature-list-view.component.spec.ts\n    │           │    │    │── my-feature-list-view.component.ts\n    │           │    │── my-feature-items\n    │           │    │    │── my-feature-update-modal.component.html\n    │           │    │    │── my-feature-update-modal.component.spec.ts\n    │           │    │    │── my-feature-update-modal.component.ts\n    │           │    │── index.ts\n    │           │── models\n    │           │    │── my-feature.ts\n    │           │── services\n    │           │    │── my-feature.service.ts\n    │           │    │── index.ts\n    │           │── state\n    │           │    │── actions\n    │           │    │    │── index.ts\n    │           │    │    │── my-feature-add-modal.actions.ts\n    │           │    │    │── my-feature-api.actions.ts\n    │           │    │    │── my-feature-delete-modal.actions.ts\n    │           │    │    │── my-feature-list-view.actions.ts\n    │           │    │    │── my-feature-update-modal.actions.ts\n    │           │    │── effects\n    │           │    │    │── index.ts\n    │           │    │    │── my-feature.effects.spec.ts\n    │           │    │    │── my-feature.effects.ts\n    │           │    │── reducers\n    │           │    │    │── index.spec.ts\n    │           │    │    │── index.ts\n    │           │    │    │── my-feature-collection.reducer.spec.ts\n    │           │    │    │── my-feature-collection.reducer.ts\n    │           │    │    │── my-feature-entities.reducer.spec.ts\n    │           │    │    │── my-feature-entities.reducer.ts\n    │           │    │── my-feature.facade.ts\n    │           │    │── my-feature.facade.spec.ts\n    │           │── my-feature.module.ts\n    └── ...\n```\n\n### Unit Testing\n\n`npm run test` will run the unit tests, using Jasmine as a runner and test framework.\n\n### Publishing\n\nTo publish, simply do:\n\n```bash\nnpm run build\nnpm publish\n```\n\nThat's it!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcedricduffournet%2Fschematics-ngx-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcedricduffournet%2Fschematics-ngx-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcedricduffournet%2Fschematics-ngx-starter/lists"}