bakend 1.0.1
bakend: ^1.0.1 copied to clipboard
Bakend client SDK for Dart and Flutter — auth, CRUD, storage, and realtime.
Bakend Dart SDK #
Client library for Dart and Flutter applications connecting to a Bakend server.
Install #
dart pub add bakend
Usage #
import 'package:bakend/bakend.dart';
final client = BakendClient('http://localhost:8080');
await client.auth.register(
const AuthCredentials(email: 'user@example.com', password: 'password123'),
);
final posts = client.collection('posts');
final post = await posts.create({'title': 'Hello'});
Documentation #
License #
MIT