What is EmbeddedChat?
- asked 703 days agoVotes
2Answers
43Views
Think like EmbeddedChat as a mini-version of Rocket.Chat packed in an npm module, as simple as that!
If you need the wiki definition, EmbeddedChat is a full-stack React component node module of the RocketChat application that is fully configurable, extensible, and flexible for use. It is tightly bound with
export interface IQuestion extends Document {
title: string;
content: string;
tags: Schema.Types.ObjectId[];
views: number;
upvotes: Schema.Types.ObjectId[];
downvotes: Schema.Types.ObjectId[];
author: Schema.Types.ObjectId;
answers: Schema.Types.ObjectId[];
createdAt: Date;
}
the RocketChat server using Rocket.Chat nodejs SDK and its UI using RocketChat's Fuselage Design System.