Popularity
7.6
Growing
Activity
0.0
Declining
1,697
54
596

Monthly Downloads: 0
Programming language: JavaScript
License: MIT License
Tags: UI Components     Miscellaneous    
Latest version: v0.6.1

react-simple-chatbot alternatives and similar libraries

Based on the "Miscellaneous" category.
Alternatively, view react-simple-chatbot alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of react-simple-chatbot or a related project?

Add another 'Miscellaneous' Library

README

React Simple Chatbot

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 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


*Note that all licence references and agreements mentioned in the react-simple-chatbot README section above are relevant to that project's source code only.