connecta 1.0.0-beta1 connecta: ^1.0.0-beta1 copied to clipboard
Simplify and streamline socket communication in Dart applications
Connecta #
Connecta is a Dart package that wraps TLS and TCP communication protocol connections under a package and provides a configurable way to manage these configurations.
Installation #
Add the following to your pubspec.yaml
file:
dependencies:
connecta: ^1.0.0-beta1
Then run:
dart pub get
Usage #
import 'dart:developer';
import 'package:connecta/connecta.dart';
Future<void> main() async {
final connecta = Connecta(
ConnectaToolkit(
hostname: 'localhost',
port: 443,
startTLS: true,
certificatePath: 'public/cert.pem',
keyPath: 'public/key.pem',
),
);
try {
await connecta.connect(onData: (value) => log(value.toString()));
/// Upgrade the connection to secure if needed.
await connecta.upgradeConnection();
connecta.send('hert');
} on ConnectaException catch (error) {
log(error.message);
}
}
Contributing to Connecta #
I do welcome and appreciate contributions from the community to enhance the Connecta
. If you have any improvements, bug fixes, or new features to contribute, you can do so by creating a pull request.