open-im-server

module
v3.3.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 12, 2023 License: Apache-2.0

README ยถ

โญ๏ธ Open source Instant Messaging Server โญ๏ธ

good first Go Reference

English โ€ข ็ฎ€ไฝ“ไธญๆ–‡ โ€ข Docs

โœจ About OpenIM

Open-IM-Server, meticulously developed in pure Golang, is a powerful instant messaging server. Its distinct communication method, employing pb+websocket, views every interaction as a message, streamlining customization without altering server code. Built on a microservice architecture, it offers deployment through clusters for outstanding performance and scalability.

Open-IM-Server is more than an instant messaging server; it's a powerful tool for incorporating real-time networking into your applications, positioning itself as your premier choice for integration! ๐Ÿš€

Please be aware that Open-IM-Server does not function as a standalone product and does not offer built-in account registration or login services. To ease your implementation process, we've open-sourced the chat repository, which comprises these features. Deploying this chat business server in conjunction with Open-IM-Server expedites the setup of a comprehensive chat product. ๐Ÿ‘ฅ

Further enhancing your experience, we also provide an SDK client, wherein most complex logics are implemented. The SDK repository can be found at this link. The chat repository is our business server while the 'core' represents the high-level encapsulation of the SDK, synergistically working together to deliver superior results. โœจ

๐ŸŒŸ Why OpenIM

๐Ÿ” Function screenshot display

๐Ÿ’ป๐Ÿ”„๐Ÿ“ฑ Multi Terminal Synchronization ๐Ÿ”„๐Ÿ–ฅ๏ธ ๐Ÿ“…โšก Efficient Meetings ๐Ÿš€๐Ÿ’ผ
multiple-message efficient-meetings
๐Ÿ“ฒ๐Ÿ”„ One-to-one and Group Chats ๐Ÿ‘ฅ๐Ÿ—ฃ๏ธ ๐ŸŽ๐Ÿ’ป Special Features - Custom Messages โœ‰๏ธ๐ŸŽจ
group-chat special-function
  1. Comprehensive Message Type Support ๐Ÿ’ฌ

    โœ… Supports almost all types of messages, including text, images, emojis, voice, video, geographical location, files, quotes, business cards, system notifications, custom messages and more

    โœ… Supports one-on-one and multi-person audio and video calls

    โœ… Provides terminal support for multiple platforms such as iOS, Android, Flutter, uni-app, ReactNative, Electron, Web, H5

  2. Efficient Meetings Anytime, Anywhere ๐ŸŒŽ

    โœ… Based on IM (Instant Messaging) with 100% reliable forced signaling capabilities, it paves the way for IM systems, deeply integrated with chat applications

    โœ… Supports hundreds of people in a single meeting, with subscription numbers reaching thousands, and server-side audio and video recording

  3. One-on-one and Group Chats for Various Social Scenarios ๐Ÿ‘ฅ

    โœ… OpenIM has four roles: application administrator, group owner, group administrator, and regular member

    โœ… Powerful group features such as muting, group announcements, group validation, unlimited group members, and loading group messages as needed

  4. Unique Features ๐ŸŒŸ

    โœ… Supports read-and-burn private chats, customizable duration

    โœ… Message editing function broadens social scenarios, making instant communication more diverse and interesting

  5. Open Source ๐Ÿ‘

    โœ… The code of OpenIM is open source, self-controlled data, aimed at building a globally leading IM open source community, including client SDK and server

    โœ… Based on open source Server, many excellent open source projects have been developed, such as OpenKF (Open source AI customer service system)

  6. Easy to Expand ๐Ÿ”ง

    โœ… The OpenIM server is implemented in Golang, introducing an innovative "everything is a message" communication model, simplifying the implementation of custom messages and extended features

  7. High Performance ๐ŸŽ

    โœ… OpenIM supports a hierarchical governance architecture in the cluster, tested by a large number of users, and abstracts the storage model of online messages, offline messages, and historical messages

  8. Full Platform Support ๐Ÿ“บ

    โœ… Supports native iOS, Android; cross-platform Flutter, uni-app, ReactNative; major web front-end frameworks such as React, Vue; applets; and PC platforms supported by Electron

  9. The ultimate deployment experience ๐Ÿค–

    โœ… Supports cluster deployment

    โœ… Supports multi-architecture mirroring, our Docker images are hosted not only on GitHub but also on Alibaba Cloud and Docker Hub supporting multiple architectures. Visit our GitHub packages and read our version management document for more information.

  10. A large ecosystem of open source communities ๐Ÿคฒ

    โœ… We have tens of thousands of users and many solutions to problems.

    โœ… We have a large open source community called OpenIMSDK that runs the core modules, we have an open source community called openim-sigs to explore more IM-based infrastructure products.

๐Ÿš€ Quick Start

You can quickly learn OpenIM engineering solutions, all it takes is one simple command:

$ make demo

๐Ÿคฒ In order to facilitate the user experience, we have provided a variety of deployment solutions, you can choose your own deployment method according to the list below:

Deploying with Docker Compose

It is recommended to use Docker Compose for deployment, which can easily and quickly deploy the entire OpenIM service on a single node

Note

If you don't know OpenIM's versioning policy, ๐Ÿ“šRead our release policy: https://github.com/openimsdk/open-im-server/blob/main/docs/conversions/version.md

Compile from Source

Ur need Go 1.18 or higher version, and make.

go version && make --version || echo "Error: One of the commands failed."

Version Details: https://github.com/openimsdk/open-im-server/blob/main/docs/conversions/version.md

You can get the version number from the command below or from github releases.

$ curl --silent "https://api.github.com/repos/openimsdk/open-im-server/releases" | jq -r '.[].tag_name'

We have our own version management policy, if you are interested in our version management, I recommend reading ๐Ÿ“š OpenIM Version, We recommend using stable versions such as v3.3.0 and v3.2.0 whenever possible. v3.1.1-alpha.3 as well as v3.3.0-beta.0 and v3.2.0-rc.0 are pre-release or beta versions and are not recommended.

Set OPENIM_VERSION environment variables for the latest OPENIM_VERSION number, or replace the OPENIM_VERSION for you to install the OpenIM-Server OPENIM_VERSION:

$ OPENIM_VERSION=`curl -s https://api.github.com/repos/openimsdk/open-im-server/releases/latest | grep -oE '"tag_name": "[^"]+"' | head -n1 | cut -d'"' -f4`
# OPENIM_VERSION=v3.3.0

Deploy basic components at the click of a command:

# install openim dependency
$ git clone https://github.com/openimsdk/open-im-server openim/openim-server && export openim=$(pwd)/openim/openim-server && cd $openim/openim-server && git checkout $OPENIM_VERSION
$ make init && docker compose up -d && make start && make check

make help to help you see the instructions supported by OpenIM.

You can use the make help-all see OpenIM in action.

Component Configuration Instructions

Read: Configuration center document๏ผšhttps://github.com/openimsdk/open-im-server/blob/main/docs/contrib/environment.md

Deployed with kubernetes

Read: https://github.com/openimsdk/open-im-server/blob/main/deployments/README.md

Open IM and Chat Ports
TCP Port Description Operation
TCP:10001 ws protocol, message port such as message sending, pushing etc, used for client SDK Port release or nginx reverse proxy, and firewall off
TCP:10002 api port, such as user, friend, group, message interfaces. Port release or nginx reverse proxy, and firewall off
TCP:10005 Required when choosing minio storage (openIM uses minio storage by default) Port release or nginx reverse proxy, and firewall off
TCP Port Description Operation
TCP:10008 Business system, such as registration, login etc Port release or nginx reverse proxy, and firewall off
TCP:10009 Management backend, such as statistics, banning etc Port release or nginx reverse proxy, and firewall off

๐Ÿ”— Relationship Between APP and OpenIM

OpenIM isn't just an open-source instant messaging component, it's an integral part of your application ecosystem. Check out this diagram to understand how AppServer, AppClient, Open-IM-Server, and Open-IM-SDK interact.

App-OpenIM Relationship

๐Ÿ— Overall Architecture

Delve into the heart of Open-IM-Server's functionality with our architecture diagram.

Overall Architecture

๐Ÿ›  To start developing OpenIM

OpenIM Our goal is to build a top-level open source community. We have a set of standards, in the Community repository.

If you'd like to contribute to this Open-IM-Server repository, please read our contributor documentation.

Before you start, please make sure your changes are in demand. The best for that is to create a new discussion OR Slack Communication, or if you find an issue, report it first.

๐Ÿ‘ฅ Community

๐Ÿ“† Community Meetings

We want anyone to get involved in our community and contributing code, we offer gifts and rewards, and we welcome you to join us every Thursday night.

Our conference is in the OpenIM Slack ๐ŸŽฏ, then you can search the Open-IM-Server pipeline to join

We take notes of each biweekly meeting in GitHub discussions, Our historical meeting notes, as well as replays of the meetings are available at Google Docs ๐Ÿ“‘.

๐Ÿ‘€ Who are using OpenIM

Check out our user case studies page for a list of the project users. Don't hesitate to leave a ๐Ÿ“comment and share your use case.

๐Ÿ“„ License

OpenIM is licensed under the Apache 2.0 license. See LICENSE for the full license text.

The OpenIM logo, including its variations and animated versions, displayed in this repository OpenIM under the assets/logo and assets/logo-gif directories, are protected by copyright laws.

๐Ÿ”ฎ Thanks to our contributors!

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL