bakend 1.0.1 copy "bakend: ^1.0.1" to clipboard
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

0
likes
140
points
--
downloads

Documentation

Documentation
API reference

Publisher

unverified uploader

Bakend client SDK for Dart and Flutter — auth, CRUD, storage, and realtime.

Homepage
Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

http, web_socket_channel

More

Packages that depend on bakend