{"id":20449648,"url":"https://github.com/charlibb/chatbot-project","last_synced_at":"2026-04-07T21:31:21.419Z","repository":{"id":223755840,"uuid":"761260410","full_name":"Charlibb/chatbot-project","owner":"Charlibb","description":"a Fullstack AI chatbot made on React + Typescript + Vite + Node.js","archived":false,"fork":false,"pushed_at":"2024-02-22T17:02:01.000Z","size":51,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-05T09:20:33.360Z","etag":null,"topics":["ai","chatbot","llm","nodejs","reactjs","typescript","vitejs"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/Charlibb.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-02-21T14:39:53.000Z","updated_at":"2024-10-15T07:37:07.000Z","dependencies_parsed_at":"2024-02-21T22:44:08.825Z","dependency_job_id":"24cf6cac-3c94-4374-9430-1130b4a02e2e","html_url":"https://github.com/Charlibb/chatbot-project","commit_stats":null,"previous_names":["charlibb/chatbot-project"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Charlibb/chatbot-project","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Charlibb%2Fchatbot-project","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Charlibb%2Fchatbot-project/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Charlibb%2Fchatbot-project/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Charlibb%2Fchatbot-project/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Charlibb","download_url":"https://codeload.github.com/Charlibb/chatbot-project/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Charlibb%2Fchatbot-project/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31530641,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T16:28:08.000Z","status":"ssl_error","status_checked_at":"2026-04-07T16:28:06.951Z","response_time":105,"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":["ai","chatbot","llm","nodejs","reactjs","typescript","vitejs"],"created_at":"2024-11-15T10:43:25.445Z","updated_at":"2026-04-07T21:31:21.399Z","avatar_url":"https://github.com/Charlibb.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Fullstack Chatbot with React + TypeScript + Vite + Node.js\n\n![image](https://github.com/Charlibb/chatbot-project/assets/81753538/5f1d27c6-1ab9-454f-b706-9d8e5896c108)\n\n\n# Fullstack Chatbot with React + TypeScript + Vite + Node.js\n\nThis repository contains a full-stack chatbot application built using React, TypeScript, Vite, and Node.js. The chatbot interacts with users through a simple web interface, utilizing the OpenAI API to generate responses based on user input.\n\n## Features:\n\n* User-friendly interface for interacting with the chatbot\n* Seamless integration with the OpenAI API for chatbot responses\n* Clean and modular code structure for maintainability\n* TypeScript for type safety and improved code quality\n* Vite for efficient development and build process\n\n## Project Structure:\n\n* `frontend/`: Contains the React application code\n    * `App.tsx`: The main component for the chatbot interface\n    * `components/`: Additional components for UI elements (optional)\n    * `styles/`: Styling files (optional)\n* `backend/`: Houses the Node.js backend server\n    * `index.ts`: The entry point for the server\n    * `routes/`: Defines API routes, including `/chatbot`\n    * `utils/`: Shared utilities for API interactions (optional)\n* `.env`: Stores environment variables for API keys and configurations (remember to add .env to your gitignore file!)\n\n## Prerequisites:\n\n* Node.js and npm (or yarn) installed\n* An OpenAI API key (create one at [https://beta.openai.com/](https://beta.openai.com/))\n* Basic knowledge of React, TypeScript, Vite, and Node.js\n\n## Setup and Usage:\n\n1. Clone this repository:\n    ```bash\n    git clone [https://github.com/your-username/fullstack-chatbot.git]\n    ```\n2. Create a `.env` file in the root directory with the following variables:\n    ```\n    VITE_OPEN_AI_KEY=YOUR_OPENAI_API_KEY\n    PORT=3005 (or your desired port)\n    ```\n3. Install dependencies in both `frontend` and `backend` directories:\n    * `frontend`: `cd frontend \u0026\u0026 npm install` (or `yarn`)\n    * `backend`: `cd backend \u0026\u0026 npm install` (or `yarn`)\n4. Start the development server:\n    ```bash\n    npm run dev` (or `yarn dev`)\n    ```\n5. Access the application in your browser at `http://localhost:3005`.\n    ```bash\n    node server.js\n    ```\n\n## Customization:\n\n* The chatbot's personality and responses can be customized by modifying the content and settings in the `/chatbot` route handler.\n* You can add new features and functionality to the frontend and backend as needed.\n\n\n## Thanks:\n\nTo Sammy Jo for her tutorial and insights!\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcharlibb%2Fchatbot-project","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcharlibb%2Fchatbot-project","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcharlibb%2Fchatbot-project/lists"}