{"id":36672279,"url":"https://github.com/fireyy/next-ant-design-pro","last_synced_at":"2026-01-12T10:42:43.610Z","repository":{"id":307934881,"uuid":"1028756219","full_name":"fireyy/next-ant-design-pro","owner":"fireyy","description":null,"archived":false,"fork":false,"pushed_at":"2025-08-03T05:09:38.000Z","size":649,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-03T06:23:33.015Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://next-ant-design-pro.vercel.app","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/fireyy.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-30T02:50:09.000Z","updated_at":"2025-08-03T05:09:42.000Z","dependencies_parsed_at":"2025-08-03T06:35:43.664Z","dependency_job_id":null,"html_url":"https://github.com/fireyy/next-ant-design-pro","commit_stats":null,"previous_names":["fireyy/next-ant-design-pro"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/fireyy/next-ant-design-pro","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fireyy%2Fnext-ant-design-pro","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fireyy%2Fnext-ant-design-pro/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fireyy%2Fnext-ant-design-pro/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fireyy%2Fnext-ant-design-pro/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fireyy","download_url":"https://codeload.github.com/fireyy/next-ant-design-pro/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fireyy%2Fnext-ant-design-pro/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28338816,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-12T10:40:25.642Z","status":"ssl_error","status_checked_at":"2026-01-12T10:39:27.820Z","response_time":98,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":"2026-01-12T10:42:42.976Z","updated_at":"2026-01-12T10:42:43.600Z","avatar_url":"https://github.com/fireyy.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Ant Deisgn Pro for Next.js\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://next-ant-design-pro.vercel.app\" target=\"_blank\"\u003e\n    \u003cimg src=\"media/screenshot.png\" width=\"1718px\"\u003e\n    \u003cbr\u003e\n    Live Demo\n  \u003c/a\u003e\n\u003c/p\u003e\n\n## What's inside?\n\nThis Turborepo includes the following packages/apps:\n\n### Apps and Packages\n\n- `web`: a [Next.js](https://nextjs.org/) app\n- `api`: a [Express](https://expressjs.com/) app, include mock api\n- `@repo/ui`: a stub React component library shared by applications\n- `@repo/eslint-config`: `eslint` configurations (includes `eslint-config-next` and `eslint-config-prettier`)\n- `@repo/typescript-config`: `tsconfig.json`s used throughout the monorepo\n- `@repo/mock`: mock untils for development\n\nEach package/app is 100% [TypeScript](https://www.typescriptlang.org/).\n\n### Utilities\n\nThis Turborepo has some additional tools already setup for you:\n\n- [TypeScript](https://www.typescriptlang.org/) for static type checking\n- [ESLint](https://eslint.org/) for code linting\n- [Prettier](https://prettier.io) for code formatting\n\n### Build\n\nTo build all apps and packages, run the following command:\n\n```\ncd next-ant-design-pro\n\n# With [global `turbo`](https://turborepo.com/docs/getting-started/installation#global-installation) installed (recommended)\nturbo build\n\n# Without [global `turbo`](https://turborepo.com/docs/getting-started/installation#global-installation), use your package manager\nnpx turbo build\nyarn dlx turbo build\npnpm exec turbo build\n```\n\nYou can build a specific package by using a [filter](https://turborepo.com/docs/crafting-your-repository/running-tasks#using-filters):\n\n```\n# With [global `turbo`](https://turborepo.com/docs/getting-started/installation#global-installation) installed (recommended)\nturbo build --filter=web\n\n# Without [global `turbo`](https://turborepo.com/docs/getting-started/installation#global-installation), use your package manager\nnpx turbo build --filter=web\nyarn exec turbo build --filter=web\npnpm exec turbo build --filter=web\n```\n\n### Develop\n\nTo develop all apps and packages, run the following command:\n\n```\ncd my-turborepo\n\n# With [global `turbo`](https://turborepo.com/docs/getting-started/installation#global-installation) installed (recommended)\nturbo dev\n\n# Without [global `turbo`](https://turborepo.com/docs/getting-started/installation#global-installation), use your package manager\nnpx turbo dev\nyarn exec turbo dev\npnpm exec turbo dev\n```\n\nYou can develop a specific package by using a [filter](https://turborepo.com/docs/crafting-your-repository/running-tasks#using-filters):\n\n```\n# With [global `turbo`](https://turborepo.com/docs/getting-started/installation#global-installation) installed (recommended)\nturbo dev --filter=web\n\n# Without [global `turbo`](https://turborepo.com/docs/getting-started/installation#global-installation), use your package manager\nnpx turbo dev --filter=web\nyarn exec turbo dev --filter=web\npnpm exec turbo dev --filter=web\n```\n\n## Templates\n\n```\n- Dashboard\n  - Analytic\n  - Monitor\n  - Workspace\n- Form\n  - Basic Form\n  - Step Form\n  - Advanced From\n- List\n  - Standard Table\n  - Standard List\n  - Card List\n  - Search List (Project/Applications/Article)\n- Profile\n  - Simple Profile\n  - Advanced Profile\n- Account\n  - Account Center\n  - Account Settings\n- Result\n  - Success\n  - Failed\n- Exception\n  - 403\n  - 404\n  - 500\n- User\n  - Login\n  - Register\n  - Register Result\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffireyy%2Fnext-ant-design-pro","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffireyy%2Fnext-ant-design-pro","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffireyy%2Fnext-ant-design-pro/lists"}