{"id":26719851,"url":"https://github.com/araryarch/next-chatbot-kit","last_synced_at":"2026-01-28T18:06:55.934Z","repository":{"id":265612103,"uuid":"896332321","full_name":"Araryarch/next-chatbot-kit","owner":"Araryarch","description":"next-chatbot-kit is a starter template for building chatbots using Next.js 15 and Bun.js.","archived":false,"fork":false,"pushed_at":"2024-12-02T09:37:02.000Z","size":297,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-04T09:18:31.985Z","etag":null,"topics":["ai","chatbot","next15","next15-template","nextjs","nextjs15"],"latest_commit_sha":null,"homepage":"https://next-chatbot-kit.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/Araryarch.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}},"created_at":"2024-11-30T04:35:57.000Z","updated_at":"2024-12-04T15:25:20.000Z","dependencies_parsed_at":"2025-03-27T18:42:56.504Z","dependency_job_id":null,"html_url":"https://github.com/Araryarch/next-chatbot-kit","commit_stats":null,"previous_names":["araryarch/next-chatbot-kit"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/Araryarch/next-chatbot-kit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Araryarch%2Fnext-chatbot-kit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Araryarch%2Fnext-chatbot-kit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Araryarch%2Fnext-chatbot-kit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Araryarch%2Fnext-chatbot-kit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Araryarch","download_url":"https://codeload.github.com/Araryarch/next-chatbot-kit/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Araryarch%2Fnext-chatbot-kit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28848416,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T15:15:36.453Z","status":"ssl_error","status_checked_at":"2026-01-28T15:15:13.020Z","response_time":57,"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":["ai","chatbot","next15","next15-template","nextjs","nextjs15"],"created_at":"2025-03-27T18:29:32.684Z","updated_at":"2026-01-28T18:06:55.918Z","avatar_url":"https://github.com/Araryarch.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# next-chatbot-kit\n\n`next-chatbot-kit` is a starter template for building chatbots using **Next.js 15** and **Bun.js**. This template provides a simple and flexible foundation for creating conversational AI applications with support for integrating third-party services, state management, and scalable chatbot components.\n\n## Features\n\n- **Next.js 15** - Built with the latest features of Next.js.\n- **Bun.js** - Uses Bun as the JavaScript runtime for faster builds and executions.\n- **Customizable UI** - Easy to modify the chatbot UI according to your design requirements.\n- **State Management** - Efficient state management for chatbot responses.\n- **API Integration** - Seamlessly integrates with AI models or any custom backend for generating responses.\n- **TypeScript Support** - Fully typed with TypeScript to ensure better code quality and IntelliSense.\n- **Responsive Design** - Works well on all screen sizes with a mobile-first approach.\n\n## Pre-requisite\n\n- Install Node.js LTS version and Bun.js\n\n- **Windows Powershell**\n  ```bash\n  powershell -c \"irm bun.sh/install.ps1 | iex\"\n  ```\n- **Linux or MacOS**\n  ```bash\n  curl -fsSL https://bun.sh/install | bash\n  ```\n\n## Installation\n\nTo get started with `next-chatbot-kit`, follow these steps:\n\n1. Install deps and make a folder :\n\n   ```bash\n   npx create-next-chatbot-kit \u003cprojects-name\u003e\n   ```\n\n2. change your directory:\n\n   ```bash\n   cd \u003cprojects-name\u003e\n   ```\n\n3. Add a `.env` File\n\n- You can create a `.env` file manually or by running the following command in your project directory:\n\n  ```bash\n  touch .env\n  ```\n\n- Next, add the following content to your `.env` file:\n\n  ```env\n  GROQ_API_KEY=YOUR_API_KEY_HERE\n  ```\n\nReplace `YOUR_API_KEY_HERE` with your actual GROQ API key, which you can obtain from the [GROQ Console](https://console.groq.com/keys).\n\n4. Run the development server:\n\n   ```bash\n   bun dev\n   ```\n\n5. Open your browser and visit `http://localhost:3000` to see the chatbot in action.\n\n## Usage\n\nYou can easily customize the template by editing the following:\n\n- **Components**: Modify the `Chatbot` component to fit your desired UI and functionality.\n- **API Routes**: Customize the backend logic in the `pages/api` folder to suit your needs, whether it’s an AI-powered bot or a rule-based chatbot.\n- **State Management**: The state management is already set up using React context; you can extend it as required for your app.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fararyarch%2Fnext-chatbot-kit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fararyarch%2Fnext-chatbot-kit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fararyarch%2Fnext-chatbot-kit/lists"}