{"id":29807023,"url":"https://github.com/developer-sumit/stackforge","last_synced_at":"2026-02-09T15:04:56.196Z","repository":{"id":302913852,"uuid":"1013944304","full_name":"developer-sumit/stackforge","owner":"developer-sumit","description":"Universal project scaffolder for React, React Native, Expo, Next.js \u0026 more—automatically bootstraps full boilerplate with zero manual setup.","archived":false,"fork":false,"pushed_at":"2025-07-05T07:59:12.000Z","size":210,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-01T04:55:51.483Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/developer-sumit.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-04T18:32:38.000Z","updated_at":"2025-07-05T07:59:15.000Z","dependencies_parsed_at":"2025-07-04T18:51:35.946Z","dependency_job_id":"e11d2589-c19a-46ce-a8b7-c78f860096b9","html_url":"https://github.com/developer-sumit/stackforge","commit_stats":null,"previous_names":["developer-sumit/stackforge"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/developer-sumit/stackforge","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/developer-sumit%2Fstackforge","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/developer-sumit%2Fstackforge/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/developer-sumit%2Fstackforge/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/developer-sumit%2Fstackforge/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/developer-sumit","download_url":"https://codeload.github.com/developer-sumit/stackforge/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/developer-sumit%2Fstackforge/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29270170,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-09T13:47:44.167Z","status":"ssl_error","status_checked_at":"2026-02-09T13:47:43.721Z","response_time":56,"last_error":"SSL_read: 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":"2025-07-28T14:46:17.233Z","updated_at":"2026-02-09T15:04:56.190Z","avatar_url":"https://github.com/developer-sumit.png","language":"TypeScript","readme":"# Turborepo starter\n\nThis Turborepo starter is maintained by the Turborepo core team.\n\n## Using this example\n\nRun the following command:\n\n```sh\nnpx create-turbo@latest\n```\n\n## What's inside?\n\nThis Turborepo includes the following packages/apps:\n\n### Apps and Packages\n\n- `docs`: a [Next.js](https://nextjs.org/) app\n- `web`: another [Next.js](https://nextjs.org/) app\n- `@repo/ui`: a stub React component library shared by both `web` and `docs` 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\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 my-turborepo\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=docs\n\n# Without [global `turbo`](https://turborepo.com/docs/getting-started/installation#global-installation), use your package manager\nnpx turbo build --filter=docs\nyarn exec turbo build --filter=docs\npnpm exec turbo build --filter=docs\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### Remote Caching\n\n\u003e [!TIP]\n\u003e Vercel Remote Cache is free for all plans. Get started today at [vercel.com](https://vercel.com/signup?/signup?utm_source=remote-cache-sdk\u0026utm_campaign=free_remote_cache).\n\nTurborepo can use a technique known as [Remote Caching](https://turborepo.com/docs/core-concepts/remote-caching) to share cache artifacts across machines, enabling you to share build caches with your team and CI/CD pipelines.\n\nBy default, Turborepo will cache locally. To enable Remote Caching you will need an account with Vercel. If you don't have an account you can [create one](https://vercel.com/signup?utm_source=turborepo-examples), then enter the following commands:\n\n```\ncd my-turborepo\n\n# With [global `turbo`](https://turborepo.com/docs/getting-started/installation#global-installation) installed (recommended)\nturbo login\n\n# Without [global `turbo`](https://turborepo.com/docs/getting-started/installation#global-installation), use your package manager\nnpx turbo login\nyarn exec turbo login\npnpm exec turbo login\n```\n\nThis will authenticate the Turborepo CLI with your [Vercel account](https://vercel.com/docs/concepts/personal-accounts/overview).\n\nNext, you can link your Turborepo to your Remote Cache by running the following command from the root of your Turborepo:\n\n```\n# With [global `turbo`](https://turborepo.com/docs/getting-started/installation#global-installation) installed (recommended)\nturbo link\n\n# Without [global `turbo`](https://turborepo.com/docs/getting-started/installation#global-installation), use your package manager\nnpx turbo link\nyarn exec turbo link\npnpm exec turbo link\n```\n\n## Useful Links\n\nLearn more about the power of Turborepo:\n\n- [Tasks](https://turborepo.com/docs/crafting-your-repository/running-tasks)\n- [Caching](https://turborepo.com/docs/crafting-your-repository/caching)\n- [Remote Caching](https://turborepo.com/docs/core-concepts/remote-caching)\n- [Filtering](https://turborepo.com/docs/crafting-your-repository/running-tasks#using-filters)\n- [Configuration Options](https://turborepo.com/docs/reference/configuration)\n- [CLI Usage](https://turborepo.com/docs/reference/command-line-reference)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeveloper-sumit%2Fstackforge","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdeveloper-sumit%2Fstackforge","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeveloper-sumit%2Fstackforge/lists"}