๐Ÿ“ฆ FlowiseAI / FlowiseEmbedReact

โ˜… 79 stars โ‘‚ 101 forks ๐Ÿ‘ 79 watching
๐Ÿ“ฅ Clone https://github.com/FlowiseAI/FlowiseEmbedReact.git
HTTPS git clone https://github.com/FlowiseAI/FlowiseEmbedReact.git
SSH git clone git@github.com:FlowiseAI/FlowiseEmbedReact.git
CLI gh repo clone FlowiseAI/FlowiseEmbedReact
Henry Henry flowise-embed-react@3.0.5 release a565e04 3 months ago ๐Ÿ“ History
๐Ÿ“‚ main View all commits โ†’
๐Ÿ“ src
๐Ÿ“„ .eslintrc.cjs
๐Ÿ“„ .gitignore
๐Ÿ“„ .npmignore
๐Ÿ“„ base.json
๐Ÿ“„ package.json
๐Ÿ“„ react-library.json
๐Ÿ“„ README.md
๐Ÿ“„ rollup.config.js
๐Ÿ“„ tsconfig.json
๐Ÿ“„ yarn.lock
๐Ÿ“„ README.md

Flowise Embed React

React library to display flowise chatbot on your website

Flowise

Install

npm install flowise-embed flowise-embed-react

or

yarn add flowise-embed flowise-embed-react

Import

Full Page Chat

import { FullPageChat } from "flowise-embed-react";

const App = () => {
  return (
    <FullPageChat
      chatflowid="your-chatflow-id"
      apiHost="http://localhost:3000"
    />
  );
};

Popup Chat

import { BubbleChat } from "flowise-embed-react";

const App = () => {
  return (
    <BubbleChat chatflowid="your-chatflow-id" apiHost="http://localhost:3000" />
  );
};