Skip to content
This repository has been archived by the owner on Nov 7, 2024. It is now read-only.

exdatic/flowise-embed-react

 
 

Repository files navigation

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" />
  );
};

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 69.4%
  • JavaScript 30.6%