react-pura-bot
v0.2.0
Published
A custom chat-bot for React.js
Downloads
269
Readme
react-pura-bot
React ChatBot is a library that provides a customizable Chat component for React and Next.js applications. This library simplifies the process of creating Realtime web Chat and to customize the Chat to match the design and functionality of your application.
Features
- Easy to use
- Consistent look and feel on iOS and Android
- Customizable font size, colors and animation duration
- Implemented with javascript
If you love this library, give us a star, you will be a ray of sunshine in our lives :)
Getting started
npm install react-pura-bot --save
ChatBot example
import PuraChat from "react-pura-chat";
const App = () => {
return (
<div>
<PuraChat
apikey="API_KEY"
onLoadCallback={() => {
console.log("Script loaded!");
}}
/>
</div>
);
};
export default App;