{"id":21556134,"url":"https://github.com/touhidrahman/nx-starter","last_synced_at":"2026-02-09T04:37:53.996Z","repository":{"id":93027856,"uuid":"295360847","full_name":"touhidrahman/nx-starter","owner":"touhidrahman","description":"Nx powered starter project for Angular with SpartanUI ","archived":false,"fork":false,"pushed_at":"2024-05-23T03:59:42.000Z","size":4080,"stargazers_count":1,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-05-23T04:59:28.152Z","etag":null,"topics":[],"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/touhidrahman.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":"2020-09-14T09:00:30.000Z","updated_at":"2024-05-29T21:32:09.206Z","dependencies_parsed_at":"2024-05-29T21:31:44.843Z","dependency_job_id":"4fbcd121-8c47-420f-8240-fffa9630bcaf","html_url":"https://github.com/touhidrahman/nx-starter","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/touhidrahman/nx-starter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/touhidrahman%2Fnx-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/touhidrahman%2Fnx-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/touhidrahman%2Fnx-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/touhidrahman%2Fnx-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/touhidrahman","download_url":"https://codeload.github.com/touhidrahman/nx-starter/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/touhidrahman%2Fnx-starter/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268314073,"owners_count":24230913,"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","status":"online","status_checked_at":"2025-08-01T02:00:08.611Z","response_time":67,"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":[],"created_at":"2024-11-24T08:01:55.566Z","updated_at":"2026-02-09T04:37:48.973Z","avatar_url":"https://github.com/touhidrahman.png","language":"TypeScript","funding_links":[],"categories":["Recently Updated","Site Templates"],"sub_categories":["[Nov 23, 2024](/content/2024/11/23/README.md)","Free Templates"],"readme":"# NX Starter\n\n\u003ca alt=\"Nx logo\" href=\"https://nx.dev\" target=\"_blank\" rel=\"noreferrer\"\u003e\u003cimg src=\"https://raw.githubusercontent.com/nrwl/nx/master/images/nx-logo.png\" width=\"45\"\u003e\u003c/a\u003e\n\n✨ **This workspace has been generated by [Nx, Smart Monorepos · Fast CI.](https://nx.dev)** ✨\n\n## Notes\n\n### Common dependencies by Spartan-Ng\n\n- ngx-scrollbar\n- embla-carousel\n- clsx\n\n## Common Tasks\n\n### Remove spec files\n\n```\nfind ./apps -type f -name \"*.spec.ts\" -exec rm -f {} +\nfind ./libs -type f -name \"*.spec.ts\" -exec rm -f {} +\n```\n\n### Spartan UI Scripts\n\nUpdate your package.json with following:\n\n```\n    \"spartan1of3\": \"pnpm add -D @spartan-ng/cli@latest --strict-peer-dependencies\",\n    \"spartan2of3\": \"pnpm add @spartan-ng/ui-core@latest --strict-peer-dependencies\",\n    \"spartan3of3\": \"pnpm dlx nx g @spartan-ng/cli:ui\",\n```\n\n### Updating spartan UI\n\n- Run `pnpm spartan1of3` to upgrade spartan cli.\n- Remove `libs/ui` directory.\n- Remove all `@spartan/*` paths from `tsconfig.base.json`.\n- Run `pnpm spartan2of3`\n- Run `pnpm spartan3of3` and follow instructions. Enter `libs/ui` when asked about install folder. Select `all` components when prompted. (Omit `helm` if you encounter error)\n- Finally run `npm run format`\n\n### Setup tailwind for a new project\n\n`npx nx generate @nrwl/angular:setup-tailwind \u003c\u003capp_name\u003e\u003e`\n\n### Prepare git hooks\n\nRun `npm run prepare` which will create `.husky/precommit` file. Open the file and write `npm run pre-commit`.\n\n## Start the app\n\nTo start the development server run `nx serve tailwind-test`. Open your browser and navigate to http://localhost:4200/. Happy coding!\n\n## Generate code\n\nIf you happen to use Nx plugins, you can leverage code generators that might come with it.\n\nRun `nx list` to get a list of available plugins and whether they have generators. Then run `nx list \u003cplugin-name\u003e` to see what generators are available.\n\nLearn more about [Nx generators on the docs](https://nx.dev/features/generate-code).\n\n## Running tasks\n\nTo execute tasks with Nx use the following syntax:\n\n```\nnx \u003ctarget\u003e \u003cproject\u003e \u003c...options\u003e\n```\n\nYou can also run multiple targets:\n\n```\nnx run-many -t \u003ctarget1\u003e \u003ctarget2\u003e\n```\n\n..or add `-p` to filter specific projects\n\n```\nnx run-many -t \u003ctarget1\u003e \u003ctarget2\u003e -p \u003cproj1\u003e \u003cproj2\u003e\n```\n\nTargets can be defined in the `package.json` or `projects.json`. Learn more [in the docs](https://nx.dev/features/run-tasks).\n\n## Want better Editor Integration?\n\nHave a look at the [Nx Console extensions](https://nx.dev/nx-console). It provides autocomplete support, a UI for exploring and running tasks \u0026 generators, and more! Available for VSCode, IntelliJ and comes with a LSP for Vim users.\n\n## Ready to deploy?\n\nJust run `nx build demoapp` to build the application. The build artifacts will be stored in the `dist/` directory, ready to be deployed.\n\n## Set up CI!\n\nNx comes with local caching already built-in (check your `nx.json`). On CI you might want to go a step further.\n\n- [Set up remote caching](https://nx.dev/features/share-your-cache)\n- [Set up task distribution across multiple machines](https://nx.dev/nx-cloud/features/distribute-task-execution)\n- [Learn more how to setup CI](https://nx.dev/recipes/ci)\n\n## Explore the Project Graph\n\nRun `nx graph` to show the graph of the workspace.\nIt will show tasks that you can run with Nx.\n\n- [Learn more about Exploring the Project Graph](https://nx.dev/core-features/explore-graph)\n\n## Connect with us!\n\n- [Join the community](https://nx.dev/community)\n- [Subscribe to the Nx Youtube Channel](https://www.youtube.com/@nxdevtools)\n- [Follow us on Twitter](https://twitter.com/nxdevtools)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftouhidrahman%2Fnx-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftouhidrahman%2Fnx-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftouhidrahman%2Fnx-starter/lists"}