Simple Facebook/Linkedin-like Chat Module For Angular

ng-chat is a simple chat module similar to Facebook/LinkedIn for Angular apps.

File Upload: ng-chat supports attaching any type of file. To do this, you need to implement an API endpoint on your app that can receive a POST with a form file.

Required settings

  • [adapter]{object}: This will point to your adapter’s implementation (‘MyAdapter‘ in the example above).
  • [userid] {any}: The unique identifier of the user who will use the chat instance.

Must Read: Soft Alert or Chat Notifications To User On-screen By Angular 2.0+

How to make use of it:

Installation:

npm install ng-chat

1. Import NgChatModule on your AppModule (EG: app.module.ts):

...
import { NgChatModule } from 'ng-chat';
@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    FormsModule,
    HttpClientModule,
    NgChatModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

2. Add the component to your AppComponent template:

<ng-chat [adapter]="adapter" [userId]="userId"></ng-chat>

3. And in your app.component.ts:

import { Component } from '@angular/core';
import { ChatAdapter } from 'ng-chat';
import { MyAdapter } from 'my-adapter';
@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})
export class AppComponent {
  title = 'app';
  userId = 999;
  public adapter: ChatAdapter = new MyAdapter();
}

See Also -

Advanced Vue Live Chatroom Plugin On Website With Vue, React & Angular
💬 A Simple Chat Module Similar To Facebook/Linkedin for Angular Apps


See Demo And Download

Official Website(rpaschoal): Click Here

This superior jQuery/javascript plugin is developed by rpaschoal. For extra advanced usage, please go to the official website.

Related Posts

HTML 5 File Input Optimized for Bootstrap 4.x./3.x with File Preview | Bootstrap Fileinput

bootstrap-fileinput is an improved HTML 5 file input  Bootstrap 5.x, 4.x and 3.x with file preview for different files, provides multiple selections, resumable section uploads, and more….

How to Add Floating Whatsapp Chat Button In HTML | venom-button

Venom Button is a very simple plugin for the jQuery floating WhatsApp button. Adds a floating button to your site that calls WhatsApp Click to Chat API. It will automatically start the WhatsApp…

Interactive Data Table Generator with JS/jQuery and JSON | Tabulator

Tabulator allows you to create interactive tables in seconds from any HTML Table, JavaScript array, AJAX data source, or JSON format data. Just include the library in your…

Simple Alert, Confirm, Prompt Popup Using Vanilla JavaScript Library | attention.js

JavaScript provides various built-in functionality to display popup messages for different purposes. Attention JS is a vanillaJS plugin used to create a custom alert, confirm, or Prompt…

Lightweight Bootstrap 4 Toast Notification Plugin | BS4 Advanced Toast

A lightweight Bootstrap 4 Toast Notification plugin integrated with JS/jQuery. bs4-toast.js is a JavaScript library that enhances the native Bootstrap toast component with icons, buttons, callbacks, and…

How to Create Audio Visualizations with JavaScript | Wave.js

Audio Visualizer Library - wave.js is a vanilla javascript audio visualization library that provides 20+ creative audio visualization effects to bring more engagement to your visitor. Contribute…

Leave a Reply

Your email address will not be published. Required fields are marked *