{"id":17573645,"url":"https://github.com/triple-ade/nextjs-starter-template","last_synced_at":"2026-04-12T09:01:40.976Z","repository":{"id":257829021,"uuid":"869442770","full_name":"TRIPLE-ADE/nextjs-starter-template","owner":"TRIPLE-ADE","description":"This is a Next.js starter template setup to help you quickly bootstrap your Next.js projects with best practices and pre-configured tools. It includes packages and setups needed for industry-standard development workflows.","archived":false,"fork":false,"pushed_at":"2024-10-27T06:49:14.000Z","size":377,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-29T15:33:07.566Z","etag":null,"topics":["commitlint","eslint","hacktoberfest","husky","lint-staged","nextjs","prettier","reactjs","tailwindcss","typescript"],"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/TRIPLE-ADE.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":"2024-10-08T09:56:04.000Z","updated_at":"2024-10-27T06:49:18.000Z","dependencies_parsed_at":"2024-10-16T15:54:04.867Z","dependency_job_id":"d83a90ca-d5b0-4d61-b0a8-06724b921dcc","html_url":"https://github.com/TRIPLE-ADE/nextjs-starter-template","commit_stats":null,"previous_names":["triple-ade/nextjs-starter-template"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/TRIPLE-ADE/nextjs-starter-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TRIPLE-ADE%2Fnextjs-starter-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TRIPLE-ADE%2Fnextjs-starter-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TRIPLE-ADE%2Fnextjs-starter-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TRIPLE-ADE%2Fnextjs-starter-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TRIPLE-ADE","download_url":"https://codeload.github.com/TRIPLE-ADE/nextjs-starter-template/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TRIPLE-ADE%2Fnextjs-starter-template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31709295,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-12T06:22:27.080Z","status":"ssl_error","status_checked_at":"2026-04-12T06:21:52.710Z","response_time":58,"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":["commitlint","eslint","hacktoberfest","husky","lint-staged","nextjs","prettier","reactjs","tailwindcss","typescript"],"created_at":"2024-10-21T21:04:06.267Z","updated_at":"2026-04-12T09:01:40.934Z","avatar_url":"https://github.com/TRIPLE-ADE.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Next.js Starter Template\n\nThis is a **Next.js starter template** setup to help you quickly bootstrap your Next.js projects with best practices and pre-configured tools. It includes packages and setups needed for industry-standard development workflows.\n\n## Features:\n\n- **Next.js (App Directory)**: Next.js setup for building modern web applications.\n- **TypeScript**: TypeScript for type checking, better maintainability and scalability.\n- **Tailwind CSS**: Utility-first CSS framework for UI development.\n- **Husky**: Automatically set Pre-commit hooks or Pre-push hooks to enforce linting and testing.\n- **Lint-Staged**: Runs ESLint and Prettier on staged files before committing.\n- **ESLint \u0026 Prettier**: Linting and formatting tools to ensure clean, consistent code.\n- **Commitlint**: Enforces conventional commit messages for better commit history.\n- **Pre-Commit Hooks**: Automatically runs linting on staged files before every commit.\n- **Pre-Push Hooks**: Automatically runs the build process before pushing to ensure code quality.\n\n## Getting Started:\n\n1. Clone the repository:\n\n   ```bash\n   git clone https://github.com/TRIPLE-ADE/nextjs-starter-template.git\n   ```\n\n2. Install dependencies:\n\n   ```bash\n   npm install\n   ```\n\n3. Run the development server:\n\n   ```bash\n   npm run dev\n   ```\n\n4. Customize the template to fit your project!\n\n## Usage:\n\nThis repository is set up as a **template**, allowing you to easily clone or generate new projects based on it.\n\n## Customize Your README\n\nAfter setting up your project, you can replace this README with a project-specific one. A **README template** is provided in this repository to help you quickly document your new project.\n\n1. Navigate to `README_TEMPLATE.md` in the root directory.\n2. Copy the contents of `README_TEMPLATE.md`.\n3. Replace this README with your own by pasting and customizing the template to fit your project.\n\n\u003e **Note:** Add all relevant project information such as the project name, description, features, and instructions.\n\n## Project Structure\n\nThe project follows a **feature-first** folder structure (or modify based on your actual structure):\n\n```bash\nproject-name/\n│\n├── .husky/              # Husky configuration for pre-commit hooks\n├── app/                # App directory for routing and pages\n│   ├── api/            # API routes\n│   ├── components/      # Reusable components\n│   ├── layout.tsx       # Layout component\n│   ├── page.tsx         # Main entry point for the app\n│   ├── styles/          # Global styles (e.g., Tailwind)\n│   ├── middleware.ts    # Middleware for authentication\n│   ├── hooks/           # Custom React hooks\n│   └── utils/           # Utility functions\n├── .eslintignore         # ESLint ignore rules configuration\n├── .eslintrc.json        # ESLint configuration\n├── .prettierignore       # Prettier ignore rules configuration\n├── .prettierrc.json      # Prettier configuration\n├── commitlint.config.mjs # Commitlint configuration\n├── components.json # shadcn components json\n├── jest.config.js      # jest configuration\n├── jest.setup.js       # jest setup configuration\n├── next-env.d.ts        # TypeScript environment definitions\n├── next.config.mjs       # Next.js configuration\n├── package-lock.json       # Lockfile for npm dependencies\n├── package.json            # Project metadata and npm scripts\n├── postcss.config.mjs     # Tailwind Postcss configuration\n├── README_TEMPLATE.md     # Project specific documentation\n├── README.md            # Project documentation\n├── tailwind.config.ts    # Tailwind configuration\n└── tsconfig.json        # TypeScript configuration\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftriple-ade%2Fnextjs-starter-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftriple-ade%2Fnextjs-starter-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftriple-ade%2Fnextjs-starter-template/lists"}