Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mellium/xmpp
An implementation of the Extensible Messaging and Presence Protocol (XMPP) in Go.
https://github.com/mellium/xmpp
chat jabber xmpp
Last synced: 3 days ago
JSON representation
An implementation of the Extensible Messaging and Presence Protocol (XMPP) in Go.
- Host: GitHub
- URL: https://github.com/mellium/xmpp
- Owner: mellium
- License: bsd-2-clause
- Created: 2018-02-24T19:19:45.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2024-12-20T13:04:59.000Z (about 1 month ago)
- Last Synced: 2025-01-23T01:05:44.699Z (10 days ago)
- Topics: chat, jabber, xmpp
- Language: Go
- Homepage: https://pkg.go.dev/mellium.im/xmpp
- Size: 2.96 MB
- Stars: 119
- Watchers: 10
- Forks: 24
- Open Issues: 45
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: docs/CONTRIBUTING.md
- Funding: docs/FUNDING.yml
- License: LICENSE
- Code of conduct: docs/CODE_OF_CONDUCT.md
- Security: docs/SECURITY.md
- Support: docs/SUPPORT.md
Awesome Lists containing this project
README
# XMPP
[![GoDoc](https://godoc.org/mellium.im/xmpp?status.svg)][docs]
[![Chat](https://img.shields.io/badge/[email protected])](https://mellium.chat)
[![License](https://img.shields.io/badge/license-FreeBSD-blue.svg)](https://opensource.org/licenses/BSD-2-Clause)
[![Build Status](https://ci.codeberg.org/api/badges/mellium/xmpp/status.svg)](https://ci.codeberg.org/mellium/xmpp)
[![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/6086/badge)](https://bestpractices.coreinfrastructure.org/projects/6086)An Extensible Messaging and Presence Protocol (XMPP) library in Go.
XMPP (sometimes known as "Jabber") is a protocol for near-real-time data
transmission, most commonly used for instant messaging, video chat signaling,
and related functionality.
This library aims to provide general protocol support with additional packages
that focus on modern instant messaging use cases.This library supports instant messaging features such as:
- Individual and group chat,
- Blocking and unblocking users,
- Forms and commands (eg. for controlling bots and gateways),
- Retrieving message history,
- General publish-subscribe semantics for storing state and data,
- Parsing simple text styling (eg. bold, italic, quotes, etc.),
- and more!To use it in your project, import it (or any of its other packages) like so:
```go
import mellium.im/xmpp
```If you're looking to get started and need some help, see the [API docs][docs] or
look in the `examples/` tree for several simple usage examples.If you'd like to contribute to the project, see [CONTRIBUTING.md].
## License
The package may be used under the terms of the BSD 2-Clause License a copy of
which may be found in the file "[LICENSE]".
Some code in this package has been copied from Go and is used under the terms of
Go's modified BSD license, a copy of which can be found in the [LICENSE-GO]
file.Unless you explicitly state otherwise, any contribution submitted for inclusion
in the work by you shall be licensed as above, without any additional terms or
conditions.[docs]: https://pkg.go.dev/mellium.im/xmpp
[CONTRIBUTING.md]: https://mellium.im/docs/CONTRIBUTING
[LICENSE]: https://codeberg.org/mellium/xmpp/src/branch/main/LICENSE
[LICENSE-GO]: https://codeberg.org/mellium/xmpp/src/branch/main/LICENSE-GO