Skip to content

stackriot/react-simple-chatbot

This branch is up to date with LucasBassetti/react-simple-chatbot:master.

Folders and files

NameName
Last commit message
Last commit date
Nov 26, 2019
Jun 24, 2020
Mar 29, 2019
Jun 24, 2020
Apr 27, 2019
Apr 14, 2017
Mar 26, 2019
Jul 17, 2018
Jul 13, 2017
Mar 26, 2019
Mar 14, 2019
Oct 31, 2018
Nov 5, 2018
Apr 17, 2017
Nov 19, 2024
Apr 3, 2019
Apr 18, 2017
Apr 14, 2017
Jun 24, 2020
Nov 16, 2019
Apr 3, 2019
Apr 8, 2019

Repository files navigation

Warning

React Simple Chatbot is no longer maintained. I recommend using react-chatbotify as an alternative.

React Simple Chatbot

Travis CI npm version Codecov

A simple chatbot component to create conversation chats

Getting Start

npm install react-simple-chatbot --save

Usage

There are several examples on the website. Here is the first one to get you started:

import ChatBot from 'react-simple-chatbot';

const steps = [
  {
    id: '0',
    message: 'Welcome to react chatbot!',
    trigger: '1',
  },
  {
    id: '1',
    message: 'Bye!',
    end: true,
  },
];

ReactDOM.render(
  <div>
    <ChatBot steps={steps} />
  </div>,
  document.getElementById('root')
);

React Simple Chatbot with AI

  1. CodeParrot AI - Bot will help you understand this repository better. You can ask for code examples, installation guide, debugging help and much more.

React Simple Chatbot on media

  1. webdesignerdepot
  2. blogduwebdesign
  3. codrops

Build with react-simple-chatbot

  1. Seth Loh Website - Personal website of Seth Loh (demo)
  2. Paul's Website - Personal website of Paul Jiang (demo)
  3. Cisco Partner Support API Chatbot - Code with screenshots to have your own Cisco Serial lookup chatbot.
  4. Chatcompose - Chatbot Platform for Conversational Marketing and Support.
  5. Mixat - News Chatbot for tweenies. Also as app (iOS or Android)

Built something with react-simple-chatbot? Submit a PR and add it to this list!

How to Contribute

Please check the contributing guide

Authors

Lucas Bassetti
Lucas Bassetti

See also the list of contributors who participated in this project.

License

MIT · Lucas Bassetti

About

💬 Easy way to create conversation chats

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 99.7%
  • HTML 0.3%