Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kaali001/chatbot
chatbot using react-simple-chatbot
https://github.com/kaali001/chatbot
Last synced: 25 days ago
JSON representation
chatbot using react-simple-chatbot
- Host: GitHub
- URL: https://github.com/kaali001/chatbot
- Owner: kaali001
- Created: 2024-01-03T18:43:47.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-09T05:57:55.000Z (6 months ago)
- Last Synced: 2024-11-02T10:05:09.079Z (2 months ago)
- Language: JavaScript
- Size: 3.95 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# To run this application run the below commands :
### 1. First initialize the npm in this project, if it runs successfully . a new folder .node_modules will be added .
npm init### 2. Make sure your are in your project directory , where all the folders and files of project are present. If not run below command in cmd by - cd followed by project name without curly braces.
cd project_folder_name### 3. Now run your project .
npm start#### On successful run of your project you will get below message in terminal.
![Screenshot (62)](https://github.com/kaali001/Chatbot/assets/115466381/b133a338-92de-4e28-9af9-bfc6d7cd6518)### 4. If you are getting multiple duplicates response of chatbot after taking user input, like this
![chbot](https://github.com/kaali001/Chatbot/assets/115466381/245f54bd-3a31-4fe4-9245-53c3fa71dcdb)### 5. Then go to your index.js file .
#### and change this :
import ReactDOM from "react-dom/client";
ReactDOM.createRoot(document.getElementById('root')).render(
)
#### to this :
import { render } from "react-dom";
render(, document.getElementById("root"));
### Thank you , Happy coding.......