meteorify 1.0.7 copy "meteorify: ^1.0.7" to clipboard
meteorify: ^1.0.7 copied to clipboard

A dart package to interact with Meteor. Connect your web or flutter apps, written in Dart, with the Meteor framework.

example/meteorify_example.dart

import 'package:meteorify/meteorify.dart';

main() async{
  try {
    ConnectionStatus status = await Meteor.connect(
        "ws://localhost:3000/websocket");
    print(status);

    final loginResult = await Meteor.loginWithPassword(
        "hello@example.com", "password@123");
    print(loginResult);

  }catch(err){
    print("Error occured");
    print(err);
  }
}
6
likes
40
pub points
0%
popularity

Publisher

verified publishershivamarora.dev

A dart package to interact with Meteor. Connect your web or flutter apps, written in Dart, with the Meteor framework.

Repository (GitHub)
View/report issues

License

BSD-2-Clause (LICENSE)

Dependencies

ddp, mongo_dart

More

Packages that depend on meteorify