Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kkazuo/dart-irc-client
https://github.com/kkazuo/dart-irc-client
Last synced: about 14 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/kkazuo/dart-irc-client
- Owner: kkazuo
- License: isc
- Created: 2023-09-28T15:56:20.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-01T16:26:26.000Z (about 1 year ago)
- Last Synced: 2024-08-16T10:16:27.632Z (3 months ago)
- Language: Dart
- Size: 41 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
A trivial IRC client library.
## Features
Supports:
- Connect to IRC server with plain text or secured with TLS.
- TLS with client certificate authentication. (for irc.oftc.net)
- SASL authentication. (for irc.libera.chat)
- Automatic PING response.
- Basic CTCP response. (CTCP VERSION / PING / TIME)## Usage
```dart
final client = IrcClient();
final connection = await client.connect();
await for (final msg in connection) {
print(msg);
}
```## Additional information
This library is in its very early stages.
It only supports sending and receiving raw IRC messages.
No useful methods are available yet.