{"id":15117647,"url":"https://github.com/godkingjay/turbo-nextui-starter","last_synced_at":"2025-09-27T23:31:16.671Z","repository":{"id":197522575,"uuid":"698804534","full_name":"godkingjay/turbo-nextui-starter","owner":"godkingjay","description":null,"archived":false,"fork":false,"pushed_at":"2024-02-24T08:48:53.000Z","size":93,"stargazers_count":15,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-09-26T01:56:50.931Z","etag":null,"topics":["eslint","hacktoberfest","hacktoberfest-accepted","hacktoberfest2023","monorepo","next","nextjs","nextui","node","prettier","tailwind","turbo","turborepo","typescript","web-development","yarn"],"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/godkingjay.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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}},"created_at":"2023-10-01T02:46:22.000Z","updated_at":"2024-09-25T02:38:21.000Z","dependencies_parsed_at":"2023-11-12T07:27:10.423Z","dependency_job_id":"fe963644-083b-4a5c-8d57-af63131f5452","html_url":"https://github.com/godkingjay/turbo-nextui-starter","commit_stats":null,"previous_names":["godkingjay/turbo-nextui-starter"],"tags_count":0,"template":true,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/godkingjay%2Fturbo-nextui-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/godkingjay%2Fturbo-nextui-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/godkingjay%2Fturbo-nextui-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/godkingjay%2Fturbo-nextui-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/godkingjay","download_url":"https://codeload.github.com/godkingjay/turbo-nextui-starter/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":234470292,"owners_count":18838628,"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":["eslint","hacktoberfest","hacktoberfest-accepted","hacktoberfest2023","monorepo","next","nextjs","nextui","node","prettier","tailwind","turbo","turborepo","typescript","web-development","yarn"],"created_at":"2024-09-26T01:46:01.095Z","updated_at":"2025-09-27T23:31:11.354Z","avatar_url":"https://github.com/godkingjay.png","language":"TypeScript","funding_links":[],"categories":["Boilerplates / Templates"],"sub_categories":[],"readme":"# Turborepo, Next, and NextUI Starter with yarn\n\nThis repository contains a template for creating a turborepo using Next.js with NextUI. A turborepo is a monorepo that uses workspaces to manage multiple projects in a single repository. This makes it easier to share code and dependencies between projects, and it also makes it easier to manage updates to multiple projects at the same time.\n\nThis template includes everything you need to get started with a turborepo, including:\n\n- A Next.js project for the front-end\n- A turborepo configuration file\n- A README file with instructions on how to get started\n\n## What's inside?\n\nThis Turborepo template uses [yarn](https://classic.yarnpkg.com/lang/en/) as a packages manager. It 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- `utils`: a stub React component library which can be shared by all applications\n- `ui`: a stub Next component library shared by both `web` and `docs` applications, this contains NextUI - a React UI Framework.\n- `eslint-config-custom`: `eslint` configurations (includes `eslint-config-next` and `eslint-config-prettier`)\n- `tailwind-config`: `tailwind` configurations used by `ui`, `web` and `docs` applications/packages.\n- `tsconfig`: `tsconfig.json`s used throughout the monorepo\n\n### Setup\n\nTo install packages of every workspace\n\n```bash\nyarn install\n```\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- [Tailwind CSS](https://tailwindcss.com/), a utility-first CSS framework packed with classes that can be composed to build any design.\n- [NextUI](https://nextui.org/), a UI library for React that helps you build beautiful and accessible user interfaces.\n\n### Build\n\nTo build all apps and packages, run the following command:\n\n```bash\nyarn build\n```\n\n### Develop\n\nTo develop all typescript apps and packages, run the following command:\n\n```bash\nyarn dev\n```\n\nTo add packages:\n\n```bash\nyarn \u003cworkspace\u003e add \u003cpackage-name\u003e\n```\n\nTo remove packages:\n\n```bash\nyarn \u003cworkspace\u003e remove \u003cpackage-name\u003e\n```\n\n### Remote Caching\n\nTurborepo can use a technique known as [Remote Caching](https://turbo.build/repo/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), then enter the following commands:\n\n```bash\ncd my-turborepo\nnpx 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```bash\nnpx turbo link\n```\n\n### Contributing\n\nWe love your contributions and we will do our best to provide you with mentorship and support.\n\nGet more details in our [Contributing Guide](https://github.com/godkingjay/turbo-nextui-starter/blob/master/CONTRIBUTING.md).\n\n\n## Useful Links\n\nLearn more about the power of Turborepo:\n\n- [Tasks](https://turbo.build/repo/docs/core-concepts/monorepos/running-tasks)\n- [Caching](https://turbo.build/repo/docs/core-concepts/caching)\n- [Remote Caching](https://turbo.build/repo/docs/core-concepts/remote-caching)\n- [Filtering](https://turbo.build/repo/docs/core-concepts/monorepos/filtering)\n- [Configuration Options](https://turbo.build/repo/docs/reference/configuration)\n- [CLI Usage](https://turbo.build/repo/docs/reference/command-line-reference)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgodkingjay%2Fturbo-nextui-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgodkingjay%2Fturbo-nextui-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgodkingjay%2Fturbo-nextui-starter/lists"}